Arch Remove/en


Arch Remove.png Arch Remove

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


Description

The Remove tools allows you to do 2 kinds of operations:

Arch Remove example.jpg

In the above image, a box is being subtracted from a wall

How to use

  1. Select a subcomponent inside an Arch object, or:
  2. Select object(s) to be subtracted, then the Arch component from which they must be subtracted (the arch component must be the last thing you selected)
  3. Press the Arch Remove.png Remove button

Scripting

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

Navigation menu