|
Menu location |
---|
Arch → Panel tools → Panel Sheet |
Workbenches |
Arch |
Default shortcut |
P,S |
See also |
Arch Panel |
This tool allows to build a 2D sheet, including any number of Arch Panel Cut objects, or any other 2D object such as those made by the Draft Workbench and Sketcher Workbench. The Panel Sheet is typically made to layout cuts to be made by a CNC machine. These sheets can then be exported to a DXF file.
The above image shows how Panel Sheets appear when exported to DXF.
The Panel sheet tool can by used in macros and from the python console by using the following function:
makePanelSheet ([objectslist])
Example:
import Arch,Draft base = Draft.makeRectangle(500,200) panel = Arch.makePanel(base,thickness=36) cut = Arch.makePanelCut(panel) sheet = Arch.makePanelSheet([cut])