kopia lustrzana https://github.com/villares/sketch-a-day
82 wiersze
2.2 KiB
Python
82 wiersze
2.2 KiB
Python
# Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day
|
|
SKETCH_NAME = "s194" # 20180711
|
|
OUTPUT = ".gif"
|
|
|
|
from gif_export_wrapper import *
|
|
add_library('gifAnimation')
|
|
|
|
cycles = 5
|
|
hatches = []
|
|
global_rot = 0
|
|
|
|
def setup():
|
|
blendMode(MULTIPLY)
|
|
print_text_for_readme(SKETCH_NAME, OUTPUT)
|
|
size(500, 500, P2D)
|
|
noStroke()
|
|
hatches.append(Hatch(color(0, 255, 255), # cian
|
|
radians(15)))
|
|
hatches.append(Hatch(color(255, 0, 255), # magenta
|
|
radians(45)))
|
|
hatches.append(Hatch(color(255, 255, 0), # yellow
|
|
radians(0)))
|
|
hatches.append(Hatch(color(0), # blacK
|
|
radians(75)))
|
|
|
|
def draw():
|
|
global global_rot
|
|
background(200)
|
|
|
|
for i, h in enumerate(hatches):
|
|
f = frameCount / 100
|
|
h.plot(do_rotation=(f % cycles == i))
|
|
|
|
global_rot += 0.0314
|
|
|
|
if not frameCount % 10:
|
|
gif_export(GifMaker, filename=SKETCH_NAME)
|
|
|
|
if global_rot > PI * cycles:
|
|
gif_export(GifMaker, finish=True)
|
|
noLoop()
|
|
|
|
|
|
class Hatch:
|
|
|
|
def __init__(self, c, rot):
|
|
self.n = width / 15
|
|
self.space = 10
|
|
l = self.n * self.space
|
|
self.x = width / 2
|
|
self.y = height / 2
|
|
self.rot = rot
|
|
self.c = c
|
|
#println((self.x, self.y, s))
|
|
|
|
def plot(self, do_rotation):
|
|
with pushMatrix():
|
|
translate(self.x, self.y)
|
|
rotate(self.rot)
|
|
s, l = self.space, self.n * self.space
|
|
if do_rotation:
|
|
d = cos(global_rot + PI/4) * s
|
|
else:
|
|
d = s * .6
|
|
for i in range(1, self.n):
|
|
for j in range(1, self.n):
|
|
fill(self.c)
|
|
ellipse(
|
|
s / 2 + s * i - l / 2. ,
|
|
s / 2 + s * j - l / 2. ,
|
|
d, d)
|
|
|
|
|
|
def print_text_for_readme(name, output):
|
|
println("""
|
|

|
|
|
|
{1}: [code](https://github.com/villares/sketch-a-day/tree/master/{0}) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)]
|
|
|
|
""".format(name, name[1:], output)
|
|
)
|