|
Beschreibung |
---|
Converts a face into a sketch without constraints. |
Autor |
Jreinhardt |
Link |
Liste von Macros How to install macros How to customize toolbars |
Version |
1.0 |
Datum zuletzt geƤndert |
2013-12-23 |
Contents |
This macro breaks down your form with function Draft Downgrade and transforms the face selected in a sketch without constraints, and ready to be modified.
import Draft wires,_faces = Draft.downgrade(FreeCADGui.Selection.getSelection(),delete=True) sketch = Draft.makeSketch(wires[0:1]) for wire in wires[1:]: Draft.makeSketch([wire],addTo=sketch) for wire in wires: FreeCAD.ActiveDocument.removeObject(wire.Name)