Alexandre B A Villares 2018-09-17 09:31:43 -03:00
rodzic cae35627fd
commit 3c7f3d15ba
3 zmienionych plików z 46 dodań i 0 usunięć

Wyświetl plik

@ -6,6 +6,13 @@ Hi! I'm [Alexandre Villares](https://abav.lugaralgum.com), let's see if I can ma
If you enjoy this, be a [patreon](https://patreon.com/arteprog) or make a donation [here](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=HCGAKACDMVNV2)
---
![s262](s262/s262.png)
262: [code](https://github.com/villares/sketch-a-day/tree/master/s262) [[Py.Processing](https://villares.github.io/como-instalar-o-processing-modo-python/index-EN)]
---
![s261](s261/s261.png)

BIN
s262/s262.png 100644

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 113 KiB

39
s262/s262.pyde 100644
Wyświetl plik

@ -0,0 +1,39 @@
# Alexandre B A Villares - https://abav.lugaralgum.com/sketch-a-day
SKETCH_NAME = "s262" # 20180917
OUTPUT = ".png"
def setup():
size(600, 600)
noStroke()
rectMode(CENTER)
blendMode(MULTIPLY)
def draw():
background(255)
fill(0, 0, 255)
grid(x=width/2, y=height/2,
order=18, spacing=30,
function=ellipse, w=20)
fill(0, 200, 100)
grid(x=width/2, y=height/2,
order=20, spacing=25,
function=rect, w=15)
def grid(x, y, order, spacing, function, w):
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, w, w)
# 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)
)