-
Notifications
You must be signed in to change notification settings - Fork 1
/
__main__.py
133 lines (111 loc) · 3.54 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
"""2024-10-10
Ilha digital 07
Estudo sobre formação e conexões de uma cidade desconectado
png
Sketch,py5,CreativeCoding
"""
from collections import deque
from pathlib import Path
import numpy as np
import py5
from PIL import Image
from utils import helpers
sketch = helpers.info_for_sketch(__file__, __doc__)
PASTA = Path(__file__).parent
MASCARA = PASTA / "sampa.png"
PALETA = deque(
[
"#F7D744",
"#D0341E",
"#D0341E",
"#120D2D",
"#425AC6",
"#CAC9D1",
]
)
def carregar_mascara(imagem: Path, escala: float = 1):
"""Carrega imagem e retorna a máscara."""
img = Image.open(imagem)
img_ = np.array(img.getdata()).reshape(img.height, img.width, 4)
mask = []
for y in img_:
for x in y:
mask.append(x[3])
img_ = np.array(mask).reshape(img.height, img.width).transpose()
return img_
def dentro_mascara(x: float, y: float, mascara: np.array, centrado: bool = True):
if centrado:
x += py5.width // 2
y += py5.height // 2
x = int(x)
y = int(y)
try:
dentro = bool(mascara[x][y])
except IndexError:
dentro = False
return dentro
def pinta_mascara(mascara: np.array, cor: str):
with py5.push_style():
py5.stroke(cor)
py5.stroke_weight(2)
for x in range(0, py5.width):
for y in range(0, py5.height):
if dentro_mascara(x, y, mascara, False):
py5.point(x, y)
def setup():
py5.size(helpers.LARGURA, helpers.ALTURA, py5.P3D)
py5.background("#222222")
py5.rect_mode(py5.CORNERS)
py5.stroke_weight(2)
py5.no_fill()
mascara = carregar_mascara(MASCARA)
passos = 80
lx = py5.width // 2
ly = py5.height // 2
x = np.linspace(-lx, lx, endpoint=False, num=py5.width)
y = np.linspace(-ly, ly + 40, endpoint=True, num=passos)
multiplicadores = np.logspace(0.9, 1.5, num=passos // 2, endpoint=False)
multiplicadores = sorted(multiplicadores) + sorted(multiplicadores, reverse=True)
pesos = np.linspace(1.2, 2.4, num=passos // 2, endpoint=False)
pesos = sorted(pesos) + sorted(pesos, reverse=True)
y = zip(y, multiplicadores, pesos)
pinta_mascara(mascara=mascara, cor="#FCF9E6")
with py5.push_matrix():
py5.translate(lx, ly)
for yb, mult_b, peso in y:
y0 = None
x0 = 0
for idx, x1 in enumerate(x):
xd = py5.remap(x1, -lx, lx, -100, 120)
mult = mult_b * py5.sin(py5.radians(xd))
yd = mult * (
abs(
py5.sin(py5.radians(x0 + (2 * yb)))
* py5.sin(py5.radians(x1 + yb))
* py5.sin(py5.radians(x0))
)
)
y1 = yb + yd if (idx % 2) else yb - yd
if y0 is None:
y0 = y1
py5.stroke(PALETA[0])
py5.stroke_weight(peso)
if dentro_mascara(x0, y0, mascara):
py5.stroke(PALETA[-1])
py5.line(x0, y0, x1, y1)
else:
py5.stroke_weight(1)
py5.circle(x1, y1, peso)
x0, y0 = x1, y1
PALETA.rotate(1)
helpers.write_legend(sketch=sketch, frame="#000", cor="#FFF")
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()