|
Расположение в меню |
---|
TechDraw → Insert Projection Group |
Верстаки |
TechDraw |
Быстрые клавиши |
na |
См. также |
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.
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.
None.
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, but the ProjectionGroup object controls the scale of all its member Views.
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)