-
Notifications
You must be signed in to change notification settings - Fork 1
/
__main__.py
69 lines (53 loc) · 1.65 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
67
68
69
"""2024-06-12
Espiral Redux 5
Criação de espirais formadas por quadrados
png
Sketch,py5,CreativeCoding,grid
"""
from random import shuffle
import py5
from utils import helpers
sketch = helpers.info_for_sketch(__file__, __doc__)
def espiral(x0: float, y0: float, offset: float, h_base: float = 40):
pontos = 800
raio_max = 900
for i in range(pontos):
angulo = py5.radians(i * 5 - offset)
r = i * raio_max / pontos
x = x0 + r * py5.cos(angulo)
y = y0 + r * py5.sin(angulo)
multiplicador = py5.sin(py5.radians(r)) * (r / 200)
h = h_base + (2 * multiplicador)
s = 50 + (1 * multiplicador * py5.sin(angulo))
b = 80 + (0.8 * multiplicador * py5.cos(angulo))
py5.stroke(h, s, b)
py5.fill(h, s, b)
if i == 0:
py5.square(x, y, 2)
else:
py5.square(x, y, 5 * multiplicador)
def espirais(x: float, y: float, cores: list[int] | None = None):
total_cores = len(cores)
offset = (360 / total_cores) + py5.random_int(30)
angulo = py5.random_int(360)
for h_base in cores:
espiral(x, y, angulo, h_base)
angulo -= offset
def setup():
py5.size(helpers.LARGURA, helpers.ALTURA, py5.P3D)
py5.color_mode(py5.HSB, 360, 100, 100)
py5.background(360, 0, 0)
cores = list(range(0, 360, 20))
shuffle(cores)
espirais(400, 400, cores)
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()