Macro SuperWire: Difference between revisions

From FreeCAD Documentation
(icon)
(Use {{MacroCode}})
Line 26: Line 26:
'''Macro_SuperWire.FCMacro'''
'''Macro_SuperWire.FCMacro'''


{{Code|code=
{{MacroCode|code=


import FreeCAD,FreeCADGui,Part
import FreeCAD,FreeCADGui,Part

Revision as of 01:01, 8 May 2020

SuperWire

Description
This macro creates a wire from selected objects (lines and arcs) even where normal wire creation methods (for example the upgrade tool) fail. Attention, you need a recent version of FreeCAD for this to work

Macro version: 0.1
Last modified: 2012-05-22
FreeCAD version: All
Download: ToolBar Icon
Author: Yorik
Author
Yorik
Download
ToolBar Icon
Links
Macro Version
0.1
Date last modified
2012-05-22
FreeCAD Version(s)
All
Default shortcut
None
See also
None

Description

This macro creates a wire from selected objects (lines and arcs) even where normal wire creation methods (for example the upgrade tool) fail.

Attention, you need a recent version of FreeCAD for this to work

Script

ToolBar Icon

Macro_SuperWire.FCMacro

import FreeCAD,FreeCADGui,Part
try:
    import DraftGeomUtils as fcgeo
except:
    from draftlibs import fcgeo

sel = FreeCADGui.Selection.getSelection()
if not sel:
   FreeCAD.Console.PrintWarning("Select something first!")
else:
   elist = []
   for obj in sel:
       if hasattr(obj,"Shape"):
           elist.append(obj.Shape.Edges[0])
   wire = fcgeo.superWire(elist)
   if wire:
       Part.show(wire)
   else:
       FreeCAD.Console.PrintError("SuperWire operation failed!")