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

13
refac/Kleber.py Executable file
View File

@@ -0,0 +1,13 @@
from Command import *
from Program import *
class Kleber:
def __init__(self):
self.out='IN;SP1;'
def hpgl(self,w,h,d):
dist=1.05
for i in range(w):
for j in range(h):
self.out+=('PU'+str(dist*(i*2*d+d))+','+str(dist*(j*2*d+d))+';CI'+str(d)+';')