no message

This commit is contained in:
leyghisbb 2020-08-30 11:23:15 +02:00
parent 519a8db48f
commit 82fa7efd18

View File

@ -1,15 +1,10 @@
#!/usr/bin/env python3
# We will use the inkex module with the predefined Effect base class.
import inkex
import measure
import re
from inkex.paths import Path
from inkex import paths
# The simplestyle module provides functions for style parsing.
from simplestyle import *
def getArea(path):
return abs(measure.csparea(paths.CubicSuperPath(path + "z")))
@ -43,5 +38,4 @@ class LaserSort(inkex.Effect):
newpathstring = "z ".join(sections) + nonClosedSection
el.set('d', newpathstring)
# Create effect instance and apply it.
LaserSort().run()