|
Description |
---|
This macro create face from a DXF file. |
Author |
shoogen |
Links |
Macros recipes How to install macros How to customize toolbars |
Version |
01.00 |
Date last modification |
2014-10-29 |
This macro create face from a DXF file, the "Layer" are recognized separate and trained in groups.
There must be groups in the file.
Launch the macro all objects are analyzed and transformed into faces.
Note: an unclosed object return an error
Macro Creating faces from a DXF file.FCMacro
import FreeCAD,Part,OpenSCAD2Dgeom doc = App.ActiveDocument for group in doc.findObjects('App::DocumentObjectGroup'): try: edges=sum((obj.Shape.Edges for obj in group.Group \ if hasattr(obj,'Shape')),[]) face = OpenSCAD2Dgeom.edgestofaces(edges) faceobj = doc.addObject('Part::Feature','face_%s' % group.Name) faceobj.Label = 'face_%s' % group.Label faceobj.Shape = face except Part.OCCError: # Exception: # FreeCAD.Console.PrintError('Error in Group %s (%s)' % (group.Name,group.Label)+"\n")
Forum Creating faces from a DXF file
Here an example Generate 3D solid from intersection of three imported 2D