remove noLoop() debug

main
Alexandre B A Villares 2018-06-01 10:40:15 -03:00
rodzic a91f40d890
commit a2515db5cd
2 zmienionych plików z 3 dodań i 10 usunięć

Wyświetl plik

@ -24,7 +24,7 @@ def draw():
rect(0, 0, width, height)
for p in Ponto.PONTOS:
p.update()
noLoop()
# noLoop() # for debug
if frameCount > 100 and not frameCount % 2:
gif_export(GifMaker, frames=200, filename=SKETCH_NAME)
@ -61,10 +61,8 @@ class Ponto():
translate(self.ox, self.oy)
ellipse(self.x, self.y, 5, 5)
def keyPressed():
redraw()
# def keyPressed():
# redraw() # for debug
def print_text_for_readme(name, output):
println("""

Wyświetl plik

@ -63,11 +63,6 @@ class Ponto():
noStroke()
ellipse(self.px, self.py, 3, 3)
def keyPressed():
redraw()
def print_text_for_readme(name, output):
println("""
![{0}]({0}/{0}{2})