mirror of
https://github.com/Xevion/processing-projects.git
synced 2025-12-06 23:15:57 -06:00
visuals section - all gifs and updated READMEs - mega commit
This commit is contained in:
@@ -15,12 +15,13 @@ def circleIntersectCircle(c1, c2):
|
||||
return c1.radius > d or c2.radius > d
|
||||
|
||||
def setup():
|
||||
size(1000, 1000)
|
||||
size(500, 500)
|
||||
global circles, upperRadius, s
|
||||
s = 0
|
||||
upperRadius = 500
|
||||
circles = []
|
||||
|
||||
noLoop()
|
||||
|
||||
def draw():
|
||||
# background(204)
|
||||
global circles
|
||||
@@ -41,3 +42,6 @@ def draw():
|
||||
|
||||
# for circle in circles:
|
||||
# circle.render()
|
||||
|
||||
def mouseClicked():
|
||||
loop()
|
||||
|
||||
Reference in New Issue
Block a user