Macro FaceToSketch: Difference between revisions

From FreeCAD Documentation
(Vertical {{Macro}}; fixed icon)
m (icon)
Line 4: Line 4:
{{Macro
{{Macro
|Name=FaceToSketch
|Name=FaceToSketch
|Icon=Macro_FaceToSketch.png
|Description=Converts a face into a sketch without constraints.
|Description=Converts a face into a sketch without constraints.
|Author=Jreinhardt
|Author=Jreinhardt
|Version=1.0
|Version=1.0
|Date=2013-12-23
|Date=2013-12-23
FCVersion=All
Download=[https://www.freecadweb.org/wiki/images/6/6e/Macro_FaceToSketch.png ToolBar Icon]
}}
}}



Revision as of 16:22, 14 June 2019

Other languages:

FaceToSketch

Description
Converts a face into a sketch without constraints.

Macro version: 1.0
Last modified: 2013-12-23

FCVersion=All Download=ToolBar Icon
Author: Jreinhardt

Author
Jreinhardt
Download
None
Links
Macro Version
1.0
Date last modified
2013-12-23

FCVersion=All Download=ToolBar Icon

FreeCAD Version(s)
None
Default shortcut
None
See also
None

Description

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.

Script

Macro_FaceToSketch.FCMacro

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)