|
Menu location |
---|
Drafting → Drawing |
Workbenches |
Draft, Arch |
Default shortcut |
None |
See also |
None |
This tool allows you to put selected objects on a svg Drawing sheet. If no sheet exists in the document, a default one will be created. This tool works similarly to the Drawing View tool, but is optimized for Draft objects, and can render flat 2D objects with a face filling. It can also handle a couple of specific Draft objects, such as dimensions and texts, that the Drawing View tool cannot handle.
The Draft Drawing tool can by used in macros and from the python console by using the following function:
Draft.makeDrawingView (object,page)
Example:
import FreeCAD,Draft obj = FreeCAD.ActiveDocument.ActiveObject page = FreeCAD.ActiveDocument.Page Draft.makeDrawingView(obj,page)