sketch-a-day/s261/s261.pyde

39 wiersze
1.1 KiB
Python

# Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day
SKETCH_NAME = "s261" # 20180916
OUTPUT = ".png"
def setup():
size(600, 600)
noStroke()
rectMode(CENTER)
def draw():
background(200)
fill(0, 0, 200)
grid(x=width/2, y=height/2,
order=18, spacing=30,
function=ellipse, s=15)
fill(0, 200, 100)
grid(x=width/2, y=height/2,
order=18, spacing=25,
function=rect, s=15)
def grid(x, y, order, spacing, function, s):
with pushMatrix():
translate(x - order * spacing / 2, y - order * spacing / 2)
for i in range(order):
for j in range(order):
function(spacing/2 + i * spacing, spacing/2 + j * spacing, s, s)
# print text to add to the project's README.md
def settings():
println(
"""
![{0}]({0}/{0}{2})
{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(SKETCH_NAME, SKETCH_NAME[1:], OUTPUT)
)