|
poziția meniului |
---|
Arch → Panel Tools → Panel |
Ateliere |
Arch |
scurtătură |
P A |
Prezentat în versiune |
0.15 |
A se vedea, de asemenea, |
Arch Panel Cut, Arch Panel Sheet |
Acest instrument vă permite să construiți tot felul de elemente de tip panou, de obicei pentru construcții de panouri, cum ar fi proiectul WikiHouse, dar și pentru toate tipurile de obiecte bazate pe un profil plat.
Imaginea de mai sus prezintă o serie de obiecte de panou, realizate pur și simplu din contururi 2D importate dintr-un fișier DXF. Ele pot fi apoi rotite și asamblate pentru a crea structuri.
Din versiunea 0.17, Panoul Arch poate fi de asemenea utilizat pentru a crea profiluri ondulate sau trapezoidale:
An Arch Panel object shares the common properties and behaviors of all Arch Components.
Instrumentul Panel poate fi utilizat în macros și de la consola python utilizând următoarele funcții:
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.Exempluː
import FreeCAD, Draft, Arch
Rect = Draft.makeRectangle(1000, 400)
Panel = Arch.makePanel(Rect, thickness=36)