Created
October 17, 2021 22:54
-
-
Save rkrishnasanka/7ac8b202def5cc42d52963c703a061e1 to your computer and use it in GitHub Desktop.
FreeCAD script to convert SVG objects to STL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
Based on https://github.com/kefir-/SVG2Solid | |
``` | |
from FreeCAD import Base | |
import importSVG | |
import Part | |
def extrudeSVG(filename, thickness): | |
doc = App.ActiveDocument | |
objcnt = len(doc.Objects) | |
# Import SVG | |
importSVG.insert(filename, doc.Name) # returns None | |
Gui.SendMsgToActiveView("ViewFit") | |
# Get latest object in document: | |
for i in range(objcnt, len(doc.Objects)): | |
SVG = doc.Objects[i] | |
if 'Shape' not in dir(SVG): | |
print "Skipping object {0}, it has no Shape".format(SVG.Name) | |
continue | |
if SVG.Shape.ShapeType not in ('Wire', 'Edge'): | |
print "Skipping shape {0} of type {1}".format(SVG.Name, SVG.Shape.ShapeType) | |
continue | |
# Gui.ActiveDocument.activeObject() | |
# Gui.ActiveDocument.path3400 | |
# All objects: App.ActiveDocument.Objects[0] etc | |
# Try to create face, hide SVG | |
try: | |
tmp = Part.Face(Part.Wire(Part.__sortEdges__(SVG.Shape.Edges))) | |
if tmp.isNull(): raise RuntimeError('Failed to create face') | |
SVGFace = doc.addObject('Part::Feature', 'SVGFace') | |
SVGFace.Shape = tmp | |
del tmp | |
except Exception: | |
print "Can't create face from part:", SVG.Name | |
finally: | |
SVG.ViewObject.Visibility=False | |
# Extrude face | |
SVGExtrude = doc.addObject("Part::Extrusion", "SVGExtrude") | |
SVGExtrude.Base = SVGFace | |
SVGExtrude.Dir = (0, 0, thickness) | |
SVGExtrude.Solid = (True) | |
SVGExtrude.TaperAngle = (0) | |
SVGFace.ViewObject.Visibility = False | |
doc.recompute() | |
# Demo use: | |
# extrudeSVG(u"/path/to/file/design.svg", 4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment