TechDraw ActiveView: Difference between revisions

From FreeCAD Documentation
No edit summary
No edit summary
Line 37: Line 37:
==Properties== <!--T:5-->
==Properties== <!--T:5-->


see [[Image:Techdraw-newsymbol.svg|16px]] [[TechDraw Symbol|Symbol]]
see [[Image:Techdraw-symbol.svg|16px]] [[TechDraw Symbol|Symbol]]




Line 48: Line 48:
* {{PropertyData|Line Width}}: Thickness of individual lines in the view.
* {{PropertyData|Line Width}}: Thickness of individual lines in the view.
* {{PropertyData|Render Mode}}: Various special effects. See Coin3d SoRenderManager for details.
* {{PropertyData|Render Mode}}: Various special effects. See Coin3d SoRenderManager for details.

=== View === <!--T:9-->
* {{PropertyView|Keep Label}}: Always show View Label if true.
* {{PropertyView|LineWidth}}: The thickness of visible lines. See [[TechDraw_LineGroup|Line Groups]].
* {{PropertyView|HiddenWidth}}: The thickness of hidden lines, if enabled.
* {{PropertyView|IsoWidth}}: The thickness of isometric(u,v) surface lines and Dimension lines.
* {{PropertyView|ExtraWidth}}: not implemented yet.
* {{PropertyView|ShowCenters}}: Circle/arc center marks on/off.
* {{PropertyView|CenterScale}}: Circular arc center mark size adjustment, if enabled.
* {{PropertyView|HorizCenterLine}}: Show a horizontal centerline through view.
* {{PropertyView|VertCenterLine}}: Show a vertical centerline through view.
* {{PropertyView|ShowSectionLine}}: Show/hide section line if applicable.


==Scripting== <!--T:6-->
==Scripting== <!--T:6-->

Revision as of 16:01, 29 August 2019

File:Techdraw-activeview.svg TechDraw ActiveView

Menu location
TechDraw → View
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
None

Description

The ActiveView tool inserts a copy of a 3D window into a Drawing page.

File:TechDraw ActiveView Sample.png

How to use

  1. Navigate to the 3D window you wish to copy.
  2. If you have multiple drawing pages in your document, you will also need to select the desired page in the tree.
  3. Press the File:Techdraw-activeview.svg ActiveView button
  4. A dialog will open to allow you to specify the size, border and background color of the copy.

Notes

  • Active views are static once generated, they are never updated with changes to the 3D model.

Properties

see File:Techdraw-symbol.svg Symbol


Dialog Fields

  • DataWidth: The width of the generated view.
  • DataHeight: The height of the generated view.
  • DataBorder: The amount of empty space to be left around the view (but within Width x Height).
  • DataBackground: Show or hide a background.
  • DataBackground Color: Color to paint the background, if applicable.
  • DataLine Width: Thickness of individual lines in the view.
  • DataRender Mode: Various special effects. See Coin3d SoRenderManager for details.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The New View tool can be used in macros and from the Python console by using the following functions:

import TechDrawGui
TechDrawGui.copyActiveViewToSvgFile(Gui.ActiveDocument.ActiveView,"myFile.svg")