Yann Le Gall · @ylegall
820 followers · 48 posts · Server genart.social

quad tree walk with ray tracing.
: "A grid inside a grid inside a grid"

#GENUARY #genuary17 #art #loop #creativecoding

Last updated 1 year ago

Jake Donham · @jakedonham
171 followers · 179 posts · Server sfba.social

haven't had much time for so I'm packing 'em in — this is "Steal Like An Artist" (after Helen Lundeberg), "A grid inside a grid inside a grid" and "Something you've always wanted to learn" (Chaikin's algorithm)

#GENUARY #genuary2023 #genuary6 #genuary17 #genuary13

Last updated 2 years ago

Elliot Schultz · @elliot
141 followers · 35 posts · Server mastodon.art
Axel Tanner · @axelt
7 followers · 13 posts · Server mastodon.art
Jacquie · @jacquietran
255 followers · 110 posts · Server mastodon.social

Day 17's prompt is "a grid inside a grid inside a grid". (Playing catch up - a day late to post!)

Great reason to finally embrace subdivision! Massive thanks to Ijeamaka Anyene (ijeamaka-anyene.netlify.app/) and @djnavarro, whose work was an immense help to this subdiv n00b.

💡 Ijea's blog post on subdivision: ijeamaka-anyene.netlify.app/po

💡 Danielle's workshop materials on tiles and tessellations: art-from-code.netlify.app/day-

#genuary2023 #genuary17 #rtistry #rstats #genartclub #creativecoding

Last updated 2 years ago

Bobby Ballerd · @bobby
51 followers · 62 posts · Server x0r.be

How yesterday´s sketch started:

#genuary17 #GENUARY

Last updated 2 years ago

Justin Riley · @ohiofi
227 followers · 219 posts · Server cmh.one

A school of recursive, glowing, pixelated sea creatures

"Genuary 17: A grid inside a grid inside a grid"

#genuary #genuary2023 #genuary17 #recursion

Last updated 2 years ago

Alexandre B A Villares 🐍 ☔ · @villares
814 followers · 1034 posts · Server ciberlandia.pt

"""
sketch_2022_01_17

Code for (py5coding.org) imported mode

Recursive grid - I'm always grateful for Takao Shunsuke's inspiration.


"""

def setup():
size(1024, 1024)
no_loop()

def draw():
background(0)
grid(0, 0, width, 4)
save_frame('###.png')

def grid(grid_x, grid_y, grid_size, n):
cell_size = grid_size / n
for i in range(n):
x = grid_x + i * cell_size
for j in range(n):
y = grid_y + j * cell_size
if cell_size < 20:
fill(x % 255, 200, y % 255)
circle(x + cell_size / 2,
y + cell_size / 2,
cell_size)
elif n == 1:
fill(0, 0, 200)
square(x, y, cell_size)
else:
next_n = int(random(1, 5))
grid(x, y, cell_size, next_n)

def key_pressed():
redraw()

#genuary #genuary17 #python #processing #py5 #トゥートprocessing #tootprocessing

Last updated 2 years ago

Metamere · @Metamere
35 followers · 59 posts · Server genart.social

2023
prompt: Grid inside a grid inside a grid

I'm not sure how much I like this sketch, but I guess it has some cool elements such as the motion control. Video compression is a bugger on this one, so you'll have to run it to see that aspect.

openprocessing.org/sketch/1798

#GENUARY #genuary17 #p5js

Last updated 2 years ago

Richard Boeser · @richardboeser
81 followers · 50 posts · Server genart.social

GENUARY day 17:
'A grid inside a grid inside a grid'

#GENUARY #genuary17 #genuary2023 #p5js

Last updated 2 years ago

𝔪𝔢𝔢𝔷 🌴 · @meezwhite
14 followers · 28 posts · Server genart.social
Antonio Páez · @paezha
728 followers · 1461 posts · Server mastodon.online

Day 17: A grid inside a grid inside a grid

Coincidentally, my grid is also a little woobly, just like @meghansharris's, lol.

Made in using and . Code is available in my repo:

github.com/paezha/genuary2023/

@jacquietran

#rtistry #genuary2023 #ggforce #ggplot2 #rstats #GENUARY #genuary17

Last updated 2 years ago

Richard Gil · @richardegil
4 followers · 17 posts · Server mastodon.social

"A grid inside a grid inside a grid"

This is a loose interpretation of today's prompt but I like it. More fun with HYPE to make the grid in Processing.

#GENUARY #genuary2023 #genuary17 #processing #creativecode #creativecodeart

Last updated 2 years ago

Meghan Harris · @meghansharris
245 followers · 81 posts · Server fosstodon.org

Day 17 of - A grid inside a grid inside a grid - Took a grid, blew it up multiple times over, then made it a little wobbly. in .

#genuary2023 #rtistry #rstats #genuary17 #genartclub #GENUARY

Last updated 2 years ago

thresfold · @thresfold
78 followers · 69 posts · Server genart.social
Marco Dell'Abate · @keep_alive
5 followers · 5 posts · Server genart.social

#genuary17

Last updated 2 years ago

David Carew · @davidcarew
45 followers · 80 posts · Server genart.social

Genuary day 17: grid in a grid in a grid.
I’ve got at least two grids here. I’m sure there’s another one between the couch cushions somewhere.

#GENUARY #genuary17 #generativeart #penplotter

Last updated 2 years ago

Mary Holstege · @mathling
117 followers · 190 posts · Server mastodon.social

interlude

Griddy McGridFace

Random isohedral tiling over split tree over torus knot over 2x2 grid.

Genuary day 17: grid in grid in grid

(for some definition of "grid" and "in")

#generativeart #genuary2023 #genuary17 #creativecoding #xquery #svg

Last updated 2 years ago

Craig S. Kaplan · @csk
415 followers · 105 posts · Server mathstodon.xyz

It seemed natural for to render some rotating nested square grids. It's a little annoying to get this to render nicely; I ended up computing explicit quad intersections using polybooljs (github.com/velipso/polybooljs), which is a bit slow (and there's still some shimmer in the thin lines). editor.p5js.org/isohedral/sket

#GENUARY #genuary17

Last updated 2 years ago

tiago · @tca
962 followers · 2122 posts · Server genart.social

A grid inside a grid inside a grid.

#genuary17 #GENUARY

Last updated 2 years ago