remove trailing spaces

pull/2/merge
Lex Neva 2016-10-27 12:49:05 -04:00
rodzic fde8267ed0
commit dbda3ed3e3
1 zmienionych plików z 6 dodań i 6 usunięć

Wyświetl plik

@ -19,7 +19,7 @@ class Point:
def mul(self, scalar): def mul(self, scalar):
return Point(self.x*scalar, self.y*scalar) return Point(self.x*scalar, self.y*scalar)
def __mul__(self, other): def __mul__(self, other):
if isinstance(other, Point): if isinstance(other, Point):
# dot product # dot product
@ -99,7 +99,7 @@ class Embroidery:
for p in self.stitches: for p in self.stitches:
p.x *= sc[0] p.x *= sc[0]
p.y *= sc[1] p.y *= sc[1]
def export_ksm(self): def export_ksm(self):
str = "" str = ""
self.pos = Point(0,0) self.pos = Point(0,0)
@ -152,7 +152,7 @@ class Embroidery:
self.str+=chr(x) self.str+=chr(x)
if (y<0): y = y + 256 if (y<0): y = y + 256
self.str+=chr(y) self.str+=chr(y)
while (delta.x!=0 or delta.y!=0): while (delta.x!=0 or delta.y!=0):
def clamp(v): def clamp(v):
if (v>127): if (v>127):
@ -165,7 +165,7 @@ class Embroidery:
move(dx,dy) move(dx,dy)
delta.x -= dx delta.x -= dx
delta.y -= dy delta.y -= dy
#dbg.write("Stitch: %s delta %s\n" % (stitch, delta)) #dbg.write("Stitch: %s delta %s\n" % (stitch, delta))
self.pos = stitch self.pos = stitch
return self.str return self.str
@ -255,7 +255,7 @@ class Turtle:
def left(self, degreesccw): def left(self, degreesccw):
self.turn(-degreesccw) self.turn(-degreesccw)
class Koch(Turtle): class Koch(Turtle):
def __init__(self, depth): def __init__(self, depth):
Turtle.__init__(self) Turtle.__init__(self)
@ -268,7 +268,7 @@ class Koch(Turtle):
fp = open("koch%d.exp" % depth, "wb") fp = open("koch%d.exp" % depth, "wb")
fp.write(self.emb.export_melco()) fp.write(self.emb.export_melco())
fp.close() fp.close()
def edge(self, depth, dist): def edge(self, depth, dist):
if (depth==0): if (depth==0):
self.forward(dist) self.forward(dist)