Macro FaceToSketch: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Macro|Icon=Text-x-python|Name=FaceToSketch|Description=Converts a face into a sketch without constraints.|Author=Jreinhardt}} import Draft wires,_faces = Draft.downg...")
 
(Marked this version for translation)
 
(21 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
{{Macro|Icon=Text-x-python|Name=FaceToSketch|Description=Converts a face into a sketch without constraints.|Author=Jreinhardt}}
<translate>
<!--T:1-->
{{Macro
|Name=FaceToSketch
|Icon=Macro_FaceToSketch.png
|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.
|Author=Jreinhardt
|Version=1.0
|Date=2013-12-23
|FCVersion=All
|Download=[https://www.freecadweb.org/wiki/images/6/6e/Macro_FaceToSketch.png ToolBar Icon]
}}


==Description== <!--T:2-->
import Draft
This macro breaks down your form with function {{KEY|[[Image:Draft_Downgrade.svg|16px]] [[Draft Downgrade]]}} and transforms the face selected in a sketch without constraints, and ready to be modified.

==Script== <!--T:3-->

<!--T:4-->
ToolBar Icon [[Image:Macro_FaceToSketch.png]]
</translate>

'''Macro_FaceToSketch.FCMacro'''

{{MacroCode|code=

import Draft
wires,_faces = Draft.downgrade(FreeCADGui.Selection.getSelection(),delete=True)
wires,_faces = Draft.downgrade(FreeCADGui.Selection.getSelection(),delete=True)
sketch = Draft.makeSketch(wires[0:1])
sketch = Draft.makeSketch(wires[0:1])
for wire in wires[1:]:
for wire in wires[1:]:
Draft.makeSketch([wire],addTo=sketch)
Draft.makeSketch([wire],addTo=sketch)
for wire in wires:
for wire in wires:
FreeCAD.ActiveDocument.removeObject(wire.Name)
FreeCAD.ActiveDocument.removeObject(wire.Name)
}}

{{clear}}

Latest revision as of 10:18, 2 July 2021

Other languages:

FaceToSketch

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.

Macro version: 1.0
Last modified: 2013-12-23
FreeCAD version: All
Download: ToolBar Icon
Author: Jreinhardt
Author
Jreinhardt
Download
ToolBar Icon
Links
Macro Version
1.0
Date last modified
2013-12-23
FreeCAD Version(s)
All
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

ToolBar Icon

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)