initial commit

This commit is contained in:
Lukas Cremer
2026-02-03 21:09:26 +01:00
commit 9fe02d248f
333 changed files with 25642 additions and 0 deletions

23
refac/main.py Executable file
View File

@@ -0,0 +1,23 @@
from Plotter import *
from Command import *
from Program import *
from Kleber import *
from K18650 import *
#plt = Plotter()#(0,0,400,400))
p = Program.parsefile('../hpgl/ag.hpgl')
#p=p.
print(str(p))
p=p.flip()
p=p.rotate(270)
print(p.winsize[0]/40, p.winsize[1]/40)
#p = p.fitin((0, 0, plt.xmax, plt.ymax), (0.5, 0.5))
print(p.winsize[0]/40, p.winsize[1]/40)
p.show()
#plt.write(p)