|
Menu location |
---|
TechDraw → Add Lines → Show/Hide Invisible Edges |
Workbenches |
TechDraw |
Default shortcut |
None |
Introduced in version |
0.19 |
See also |
TechDraw DecorateLine |
The TechDraw ShowAll tool is intended to temporarily show, and then hide, invisible lines in a View. Lines can be made invisible with the TechDraw DecorateLine tool. Note that "invisible" is a cosmetic state, not to be confused with hidden lines which are geometric constructs.
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
The effect of the ShowAll tool can be duplicated in macros or the Python console.
v = App.ActiveDocument.View
vvo = v.ViewObject
vvo.ShowAllEdges = True
App.ActiveDocument.recompute()