-
Notifications
You must be signed in to change notification settings - Fork 1
/
__main__.py
66 lines (52 loc) · 1.5 KB
/
__main__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""2024-05-08
Grade e círculos
Inspirado por um sketch to Alexandre Villares
png
Sketch,py5,CreativeCoding,abav
"""
import py5
from utils import helpers
sketch = helpers.info_for_sketch(__file__, __doc__)
PG = None
QUADRADO = 98
def setup():
global pg
py5.size(helpers.LARGURA, helpers.ALTURA, py5.P3D)
py5.color_mode(py5.HSB, 360, 100, 100)
pg = py5.create_graphics(QUADRADO, QUADRADO)
py5.frame_rate(3)
def draw():
py5.background(46, 11, 97)
f = py5.frame_count
step = py5.TWO_PI / 16
i = 0
for idy, y in enumerate(range(100, 700, 100), 1):
for idx, x in enumerate(range(100, 700, 100), 1):
pos = (idy * 10) + idx
sem = f * pos
s = py5.cos(py5.radians(sem * 2) + i * step)
d = py5.random_int(10, 50) + (50 * s)
xc = py5.remap(f % 50, 0, 50, 0, QUADRADO)
yc = py5.remap(s, -1, 1, 0, QUADRADO)
pg.begin_draw()
pg.background(100, 200, 0)
h = (pos * f) * s % 360
s = 60
b = 70
pg.fill(h, s, b)
print(f, sem, s, yc, h, s, b)
pg.circle(xc, yc, d)
pg.end_draw()
py5.image(pg, x, y)
i += 1
helpers.write_legend(sketch=sketch, frame="#000")
def key_pressed():
key = py5.key
if key == " ":
save_and_close()
def save_and_close():
py5.no_loop()
helpers.save_sketch_image(sketch)
py5.exit_sketch()
if __name__ == "__main__":
py5.run_sketch()