|
Menyplacering |
---|
Arch → Remove |
Arbetsbänk(ar) |
Arch |
Standard genväg |
None |
Se även |
Arch Add/sv |
Remove verktyget låter dig göra 2 sorters operationer:
I bilden ovan, så subtraheras en låda från en vägg
The Remove tool can by used in macros and from the python console by using the following function:
removeComponents (objectsList,[hostObject])
Example:
import FreeCAD, Arch, Draft, Part line = Draft.makeWire([FreeCAD.Vector(0,0,0),FreeCAD.Vector(2,2,0)]) wall = Arch.makeWall(line) box = Part.makeBox(1,1,1) Arch.addComponents(box,wall) Arch.removeComponents(box)