#genuary17
quad tree walk with ray tracing.
#genuary #genuary17: "A grid inside a grid inside a grid"
#art #loop #creativecoding
haven't had much time for #genuary #genuary2023 so I'm packing 'em in — this is #genuary6 "Steal Like An Artist" (after Helen Lundeberg), #genuary17 "A grid inside a grid inside a grid" and #genuary13 "Something you've always wanted to learn" (Chaikin's algorithm)
Day 17 – A grid inside a grid inside a grid.
#genuary #genuary2023 #genuary17 #blender #b3d #geometrynodes #generativeart #phenakistiscope #zoetrope #stroboscope #animation

Genuary 2023 prompt "A grid inside a grid inside a grid"
it's grids all the way down ...
#genuary2023 #genuary17
#openrndr #generativeart #creativecode #creativecoding #lineart #blackandwhite #fractal

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 (https://ijeamaka-anyene.netlify.app/) and @djnavarro, whose work was an immense help to this subdiv n00b.
💡 Ijea's blog post on subdivision: https://ijeamaka-anyene.netlify.app/posts/2021-09-07-so-you-want-to-subdivide-a-rectangle/
💡 Danielle's workshop materials on tiles and tessellations: https://art-from-code.netlify.app/day-2/session-2/

A school of recursive, glowing, pixelated sea creatures
"Genuary 17: A grid inside a grid inside a grid"
"""
sketch_2022_01_17 #genuary #genuary17 #Python #Processing
Code for #py5 (py5coding.org) imported mode
Recursive grid - I'm always grateful for Takao Shunsuke's inspiration.
#トゥートProcessing #TootProcessing
"""
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 2023 #genuary17 #p5js
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.
GENUARY day 17:
'A grid inside a grid inside a grid'
grid × grid × grid
🔭 https://openprocessing.org/sketch/1798249
outputs 👇
#genuary #genuary2023 #genuary17 #creativecoding #generativeart #genart #genartclub

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 #Rstats using #ggplot2 and #ggforce. Code is available in my #Genuary2023 repo:
https://github.com/paezha/genuary2023/tree/master/2022-01-17_A-grid-inside-a-grid-inside-a-grid

Genuary day 17: A grid inside a grid inside a grid
#genuary17 #genuary2023 #genuary #plottertoot #penplotter #axidraw #generativeart

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
#GenerativeArt 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")

It is #genuary17 and I want to try something different from the recursive and self-similar grids.
A 2x1 grid each containing a 25x1 grid containing a 600x800 that shows a state from a 1x2 grid.
What is shown is not noise but a pattern that correlates with how much time it took to compute each of the 600x800 grid cells.


For "grid inside a grid" I wanted to create one of those trippy infinite recursive zooms. I'm not super satisfied with the result. The seams are painfully visible and the zoom is anything but constant.
Day 17: A grid inside a grid inside a grid
View from inside a Menger sponge
#genuary #genuary2023 #genuary17

#genuary 17 - A grid inside a grid inside a grid
made with #p5js
#genuary17 #creativecoding #art #generativeart
#genuary has been a ridiculous amount of fun but I'm also very excited for it to be over so I can take some time to cool off 😅
#pico8 #genuary17
GUI: Gratuitous User Interface
#genuary17: a grid (inside a grid)^n
Prompt for Day 17: "A grid inside a grid inside a grid"
For this one, it's tempting to go with recursion, but I decided to resist.
Here are the posts for my supporters on ko-fi and patreon:
https://ko-fi.com/post/Genuary-2023-Day-17-H2H5GUQ3N
https://www.patreon.com/posts/75565527
#genuary2023 #genuary17 #genuary #GenerativeArt #CreativeCoding #WomenWhoCode #art #MathArt #patreonCreator #kofi
#Genuary Day 17: A grid inside a grid inside a grid
Playing around with different subdivisions of a grid inside a grid inside a grid. This is my favourite so far.
#genuary2023 #genuary17 #grids #generativeart #genartclub #genart

Day 17 is grid inside a grid inside a grid. I already have a system for recursive grids, so tweaked the colors and got my new midi controller hooked up. #genuary17 #genuary2023 #genuary
A 6-D #maze for #genuary17: a grid in a grid in a grid
For each single arrowhead, go to the same cell across the thin lines. For each double arrowhead, go to the same cell across the thick lines.

Genuary 2023, day 17: A grid inside a grid inside a grid.
Intersected superellipses.
Genuary Day 17: A grid inside a grid inside a grid
#genuary17: grid within a grid within a grid. hey who does that remind you of? time for Mondrian!! #genuary https://openprocessing.org/sketch/1797489
Today's #genuary prompt "Grid inside a grid, inside a grid" gave me fits, tbh. Deleted and started over at least 4 times. Just couldn't make anything look good. Thankfully, I eventually I did get to this, which I like the warmth and texture of.
Code at: https://openprocessing.org/sketch/1797434
Though fair warning, it takes a fair while to render.
data:text/html,<!--GENUARY 2023 DAY 17 GRIDinGRID--><canvas id=x><script>x.height=x.width=S=800,X=x.getContext`2d`;function C(u,v,l){let g=l/2;if(Math.random(X.strokeRect(u,v,l,l))<0.7+g/S&&l>10)C(u+g,v,g),C(u,v,g),C(u,v+g,g),C(u+g,v+g,g)}C(50,50,700)</script>
#genuary #genuary17
Here is my #genuary17 (A grid inside a grid inside a grid) contribution to #genuary2023, created in #Desmos.
Day #17 of Genuary: Grid³:
A grid inside a grid inside a grid
#genuary #genuary2023 #genuary17 #genartclub #creativecoding #grid #graphicdesign #webgl #p5 #three #openframeworks #processing #lineart
"A grid inside a grid inside a grid" for #Genuary17. Several octaves of nearest-neighbor value noise, with Sobel edges.
Looks like it's grids all the way down
#genuary17 #genuary #genuary2023 #perfectLoop #Processing #CreativeCoding #GenArt #GenerativeArt #Geometry
#genuary2023 Day 17: A grid inside a grid inside a grid (prompt by @adiotalleviart@twitter.com)
#genuary #genuary17 #genartclub #generative #glsl #perfectloop
I combined day 15 and 17 - coming to and fading away in a grid of milliseconds
code is here: https://codepen.io/fractalkitty/full/MWBvveO