TechDraw NewSection

TechDraw NewSection.png TechDraw NewSection

Menu location
TechDraw → Section
Workbenches
TechDraw
Default shortcut
See also


Description

The Section tool creates a cross section view based on an existing part view.

ViewSection.png

How to use

  1. Select a part view 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-viewsection.png Section button
  4. A dialog will open which will help calculate the various Section properties. The dialog calculates reasonable starting points for SectionNormal and view Direction, but these may be changed after creation for special needs.
TaskViewSection.png

Options

None.

Properties

Note: Section inherits all applicable View properties.

Scripting

Sections can be added to Pages using Python.

view = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewPart','View')
rc = page.addView(view)
view.Source = box
view.Direction = (0.0,0.0,1.0)

section = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewSection','Section')
rc = page.addView(section)
section.Source = box
section.BaseView = view
section.Direction = (0.0,1.0,0.0)
section.SectionNormal = (0.0,0.0,1.0)
section.SectionOrigin = (5.0,5.0,5.0) 

Notes

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

Navigation menu