Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
for x in range(0, width, 30):
for y in range(0, height, 30):
angle = xAngle * (x / width) + yAngle * (y / height)
myX = x + 20 * P5.cos(2 * P5.PI * t + angle)
myY = y + 20 * P5.sin(2 * P5.PI * t + angle)
P5.ellipse(myX, myY, 10)
t = t + 0.01
console.log(P5.frameRate())
my_p5 = start_p5(setup, draw)