|
Menu location |
---|
Draft → Mirror |
Workbenches |
Draft, Arch |
Default shortcut |
None |
See also |
Draft Scale |
This tool produces a mirrored copy of a selected object, using a Part Mirror object. The copy is parametrically bound to the original object: If the original object changes, the mirrored copy changes too, but keeps mirrored.
The Clone tool can by used in macros and from the python console by using the following function:
mirror (objectslist,p1,p2)
Example:
import Draft,FeeCAD p1 = FreeCAD.Vector(0,0,0) p2 = FreeCAD.Vector(2,2,0) Draft.mirror(FreeCAD.ActiveDocument.ActiveObject,p1,p2)