Arch Add/en


Arch Add.png Arch Add

Menu location
Arch → Add
Workbenches
Arch
Default shortcut
None
See also
Arch Remove


Description

The Add tool allows you to do 4 kinds of operations:

Arch Add example.jpg

In the above image, a box is being added to a wall.

How to use

  1. Select the object(s) to be added, then the "host" object (the host object must be the last one you selected)
  2. Press the Arch Add.png Add button

Scripting

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) 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Arch_Add/en&oldid=263296"

Navigation menu