TechDraw NewArch
|
Расположение в меню
|
TechDraw → ArchView
|
Верстаки
|
TechDraw
|
Быстрые клавиши
|
|
См. также
|
|
|
Description
The ArchView tool inserts a view of an Arch SectionPlane on a TechDraw page.
How to use
- Select an Arch section plane in the 3D view or in the tree
- If you have multiple drawing pages in your document, you will need to select the desired page in the tree.
- Press the
ArchView button
- A view of the objects seen by the section plane will appear on the page.
Options
- The Arch View is rendered by the Arch Module, the same way as in the Drawing Workbench. See Notes.
- Draft Dimensions, Draft Texts and any other 2D (Sketch or Draft) object considered by the section plane is rendered "as is" (no intersection or hidden lines) on top of the solid geometry
- The volume of Arch Spaces is not rendered, only the label will be rendered
- Cut lines, projected lines (if Show Hidden property is set to True) and 2D lines above can be rendered with different line widths. This can be configured in the Arch preferences.
- The ArchView has two rendering modes: Wireframe, which uses the OpenCasCade algorithms of the Drawing Module, is fast and produces only lines (no face fill possible), and Solid, which is based on the Painter's algorithm, and is capable of rendering faces filled with their shape color. However, it is much slower and can fail in many situations. The image below illustrates the difference between the two rendering modes:
- Only the base line of Arch Pipes is rendered, not the full volume of the tube:
Properties
- DATASource: The section plane object to be displayed
- DATAAll On: If hidden objects must be shown or not. If False, only objects that are visible in the 3D view are rendered
- DATARender Mode: The render mode to use, Solid or Wireframe
- DATAShow Hidden: If the hidden geometry (the part of the goemetry that lies behind the section plane) is shown or not. It will be rendered in dashed line, which can be configured in the Arch preferences.
- DATAShow Fill: If cut areas must be filled with a grey color or not
- DATALine Width: The width of the main lines. Cut lines and projected/2D line widths ratios can be configured in the Arch preferences
- DATAFont Size: The size of all texts that appear in this view
Scripting
ArchViews can be added to Pages using Python.
dv = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewArch','TestArch')
dv.Source = mySectionPlane
rc = page.addView(dv)
Notes
- Since the ArchView is rendered within the Arch Module, TechDraw has limited control over it's appearance. You may need to make changes within Arch to get the representation you want.