refactored file structures to match extension ids, file names and class names

This commit is contained in:
2021-06-02 23:30:37 +02:00
parent d95e0ce262
commit e1daf4c934
2405 changed files with 1754 additions and 1775 deletions

View File

@ -29,7 +29,7 @@ import inkex
from inkex import turtle as pturtle
class parabola(inkex.GenerateExtension):
class Parabola(inkex.GenerateExtension):
container_label = 'Parabola'
def add_arguments(self, pars):
@ -237,5 +237,4 @@ class parabola(inkex.GenerateExtension):
return inkex.PathElement(d=tur.getPath(), style=str(style))
if __name__ == "__main__":
# execute only if run as a script
parabola().run()
Parabola().run()