kopia lustrzana https://github.com/villares/sketch-a-day
96 wiersze
2.5 KiB
Python
96 wiersze
2.5 KiB
Python
# Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day
|
|
# Trying some combinatorics...
|
|
|
|
add_library('VideoExport')
|
|
|
|
from random import choice, shuffle
|
|
from itertools import product, permutations, combinations
|
|
from forms import b_poly_arc_augmented
|
|
from line_geometry import *
|
|
|
|
NUM_POINTS = 5
|
|
BORDER = 100
|
|
SIZE = 150
|
|
RDS = 75
|
|
save_frame = True
|
|
ensambles = []
|
|
st = 0
|
|
|
|
def setup():
|
|
size(500, 500)
|
|
ensambles[:] = create_points()
|
|
blendMode(MULTIPLY)
|
|
# Video Export
|
|
global ve
|
|
ve = VideoExport(this)
|
|
ve.setFrameRate(1)
|
|
ve.startMovie()
|
|
|
|
def create_points():
|
|
""" non intersecting poly """
|
|
global grid
|
|
good = False
|
|
grid = list(product(range(BORDER, width - BORDER + 1, SIZE),
|
|
range(BORDER, height - BORDER + 1, SIZE)))
|
|
combos = set(permutations(grid, NUM_POINTS))
|
|
for pts in combos:
|
|
for _ in range(len(pts)-1):
|
|
pts = pts[1:] + (pts[0],)
|
|
combos.discard(pts)
|
|
ens = []
|
|
for pts in combos:
|
|
if not intersecting(pts):
|
|
ens.append(pts)
|
|
print(len(ens))
|
|
# shuffle(ens)
|
|
return ens
|
|
|
|
def draw():
|
|
global st, pts
|
|
background(200)
|
|
scale(1/4.)
|
|
for i in range(4):
|
|
pts0, pts1, pts2 = ensambles[st - 2], ensambles[st - 1], ensambles[st]
|
|
for j in range(4):
|
|
pushMatrix()
|
|
translate(width * i, height * j)
|
|
lines = ((pts1, pts2, []), (pts0, pts1, []),
|
|
(pts0, [], pts2), (pts0, pts1, pts2))
|
|
draw_ensamble(*lines[j])
|
|
popMatrix()
|
|
st = (st + 1) % len(ensambles)
|
|
ve.saveFrame()
|
|
|
|
def draw_ensamble(pts0, pts1, pts2):
|
|
print pts0
|
|
fill(0, 0, 200)
|
|
b_poly_arc_augmented(pts0, [RDS] * NUM_POINTS)
|
|
fill(0, 200, 100)
|
|
b_poly_arc_augmented(pts1, [RDS] * NUM_POINTS)
|
|
fill(200, 0, 100)
|
|
b_poly_arc_augmented(pts2, [RDS] * NUM_POINTS)
|
|
|
|
|
|
def keyPressed():
|
|
if key == "p":
|
|
saveFrame("####.png")
|
|
if key == " ":
|
|
ensambles[:] = create_points()
|
|
if key == "e":
|
|
ve.endMovie()
|
|
|
|
|
|
def settings():
|
|
""" print markdown to add at the sketc-a-day page"""
|
|
from os import path
|
|
global SKETCH_NAME
|
|
SKETCH_NAME = path.basename(sketchPath())
|
|
OUTPUT = ".png"
|
|
println(
|
|
"""
|
|

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