kopia lustrzana https://github.com/villares/sketch-a-day
29 wiersze
527 B
Python
29 wiersze
527 B
Python
"""
|
|
Based on //https://twitter.com/ky0ju_art/status/1188400508341383168?s=09
|
|
"""
|
|
from random import randint as r
|
|
x = y = X = Y = a = 0
|
|
def setup():
|
|
size(500, 500)
|
|
clear()
|
|
|
|
def draw():
|
|
global x, y, X, Y, a
|
|
translate(250, 250)
|
|
a += 1
|
|
x += X
|
|
y += Y
|
|
if a % 40 == 0:
|
|
X = r(-1, 1)
|
|
Y = r(-1, 1)
|
|
fill(255)
|
|
circle(x, y, 5)
|
|
stroke(255)
|
|
noFill()
|
|
point(x, y)
|
|
if abs(x) > 200 or abs(y) > 200:
|
|
x = y = a = 0
|
|
|
|
def keyPressed():
|
|
saveFrame("####.png")
|