|
Расположение в меню |
---|
Архитектура → Добавить компонент |
Верстаки |
Arch |
Быстрые клавиши |
отсутствуют |
См. также |
Удалить компонент |
Contents |
The Add tool allows you to do 4 kinds of operations:
In the above image, a box is being added to a wall.
The Add tool can by used in macros and from the python console by using the following function:
addComponents (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)