|
|
| Menu location |
|---|
| 3D/BIM → Panel Utils → Panel Tools → Panel |
| Workbenches |
| BIM |
| Default shortcut |
| P A |
| Introduced in version |
| 0.15 |
| See also |
| Arch Panel Cut, Arch Panel Sheet |
The Arch Panel tool allows you to build all kinds of panel-like elements, typically for panel constructions like the WikiHouse project, but also for all kinds of objects that are based on a flat profile.
The above image shows a series of panel objects, simply made from imported 2D contours from a DXF file. They can then be rotated and assembled to create structures.
The Arch Panel can also be used to create corrugated or trapezoidal profiles:
An Arch Panel object shares the common properties and behaviors of all Arch Components.
See also: Arch API and FreeCAD Scripting Basics.
The Panel tool can be used in macros and from the Python console by using the following function:
Panel = makePanel(baseobj=None, length=0, width=0, thickness=0, placement=None, name="Panel")
Panel object from the given baseobj, which is a closed profile, and the given extrusion thickness.
baseobj is given, you can provide the numerical values for the length, width, and thickness to create a block panel.placement is given, it is used.Example:
import FreeCAD, Draft, Arch
Rect = Draft.makeRectangle(1000, 400)
Panel = Arch.makePanel(Rect, thickness=36)