Formas 05

2023-12-05

"""2023-12-05"""
from helpers import HEIGHT
from helpers import save_image
from helpers import WIDTH
from helpers import write_legend
from pathlib import Path
from random import shuffle

import numpy as np
import py5


IMG_NAME = Path(__file__).name.replace(".py", "")


def circulo(raio, x0=0, y0=0, p=900):
    points = []
    passo = 1 / p
    angulos = np.arange(0, 2 * np.pi, passo)
    for angulo in angulos:
        x = x0 + (raio - (raio * np.cos(angulo)))
        y = y0 + (raio - (raio * np.sin(angulo)))
        points.append((x, y))
    return points


def espiral(raio, x0=0, y0=0, passos=10, voltas=5):
    points = []
    x_ = []
    y_ = []
    for theta in np.linspace(0, 2 * np.pi * voltas, passos):
        r = theta**2
        x_.append(r * np.cos(theta))
        y_.append(r * np.sin(theta))
    min_x, max_x = min(x_), max(x_)
    min_y, max_y = min(y_), max(y_)
    for x, y in zip(x_, y_):
        x = py5.remap(x, min_x, max_x, x0 - raio, x0 + raio)
        y = py5.remap(y, min_y, max_y, y0 - raio, y0 + raio)
        points.append((x, y))
    return points


def setup():
    py5.size(WIDTH, HEIGHT, py5.P3D)
    py5.color_mode(py5.HSB, 360, 100, 100)
    py5.background(py5.color(0))
    py5.stroke(py5.color(360, 0, 100))
    r2 = 50
    circulo_int = list(circulo(r2, 10, 10))
    shuffle(circulo_int)
    r1 = 300
    total_pontos = len(circulo_int)
    circulo_ = espiral(r1, 0, 0, passos=len(circulo_int), voltas=10)
    margem = 40
    with py5.push_matrix():
        py5.translate(WIDTH // 2, HEIGHT // 2, 0)
        for idx, (x0, y0) in enumerate(circulo_):
            z = idx // (total_pontos / 20)
            py5.translate(0, 0, z)
            x1_, y1_ = circulo_int[idx]
            x1 = py5.remap(x1_, 0, r2 * 2, x0 - margem, x0 + margem)
            y1 = py5.remap(y1_, 0, r2 * 2, y0 - margem, y0 + margem)
            h = py5.random_int(0, 360)
            s = py5.random_int(0, 100)
            b = py5.random_int(0, 100)
            py5.stroke(py5.color(h, s, b))
            py5.fill(py5.color(h, b, s))
            raio_0 = z
            raio_1 = raio_0 + 2
            raio = py5.random(raio_0, raio_1)
            py5.circle(x1, y1, raio)
    write_legend([py5.color(360, 0, 100)], IMG_NAME)


def key_pressed():
    key = py5.key
    if key == " ":
        save_and_close()


def save_and_close():
    py5.no_loop()
    save_image(IMG_NAME, "png")
    py5.exit_sketch()


py5.run_sketch()