Slide 10
Slide 10 text
@nnja
"""
Python version of https://www.openprocessing.org/sketc
by Saskia Freeke
"""
t = 0.0
theta = 0.0
max_frame_count = 200
def draw():
background("#242949")
translate(width / 2, height / 2)
t = float(frameCount) / max_frame_count
theta = TWO_PI * t
for x in xrange(-175, 176, 25):
for y in xrange(-100, 156, 50):
offSet = float(50 * x + y + y)
x2 = float(map(cos(-theta + offSet), 0, 1,
y2 = float(map(cos(-theta + offSet), 0, 1,
sz2 = float(map(sin(-theta + offSet), 0, 1
PROCESSING.PY