TechDraw NewProjGroup

TechDraw NewProjGroup.png TechDraw NewProjGroup

Menu location
TechDraw → Insert Projection Group
Workbenches
TechDraw
Default shortcut
na
See also


Description

The ProjectionGroup tool creates multiple orthographic projections (https://en.wikipedia.org/wiki/Multiview_orthographic_projection) of one or more 3D objects (Body or Part). Optionally, isometric views of the 4 front corners can be included.

ProjGroupSample.png

Note that if you only want to produce a single View, there is no advantage in using ProjectionGroup to do so, and in fact creating the View in Projection Group may take considerably longer than the equivalent basic View.

How to use

  1. Select one or more Body and/or Part objects in the 3D window or tree.
  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 Techdraw-projgroup.png Insert Projection Group button
  4. A dialog will open in which you can select which views should appear in the group, the group's scale and other parameters.
  5. You can move the group as a whole by dragging the central view. You can also move individual views by dragging.
TaskProjGroup.png

Options

None.

Properties

Note: The ProjectionGroup as a whole inherits X,Y,ScaleType,Scale and Rotation from the basic view. Note: Individual views within the group inherit all part view properties.

Scripting

ProjGroups can be added to Pages using Python.

group = FreeCAD.ActiveDocument.addObject('TechDraw::DrawProjGroup','pGroup')
group.Source = [fusion]
group.ScaleType = "Document"
anchorView = group.addProjection("Front")
group.Anchor = anchorView

leftView = group.addProjection("Left")
topView = group.addProjection("Top")
page.addView(group) 

Notes

Online version: "http://www.freecadweb.org/wiki/index.php?title=TechDraw_NewProjGroup&oldid=246238"

Navigation menu