|
メニューの場所 |
---|
Arch -> Add |
ワークベンチ |
建築 |
デフォルトのショートカット |
None |
バージョンで導入 |
- |
も参照してください |
Arch Remove |
Addツールは2種類の操作を提供します:
The counterpart of this tool is the Arch Remove tool.
上の図では壁に直方体が追加されています。
Add ツールは、マクロやPythonコンソールから次の関数を使って使うことができます:
addComponents(objectsList, host)
例題:
import FreeCAD, Arch, Draft, Part
p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 2000, 0)
Line = Draft.makeWire([p1, p2])
Wall = Arch.makeWall(Line, width=150, height=2000)
p3 = FreeCAD.Vector(0, 2000, 0)
p4 = FreeCAD.Vector(3000, 0, 0)
Line2 = Draft.makeWire([p3, p4])
Wall2 = Arch.makeWall(Line2, width=150, height=2000)
FreeCAD.ActiveDocument.recompute()
Arch.addComponents(Wall2, Wall)
FreeCAD.ActiveDocument.recompute()