quad tree walk with ray tracing.
#genuary #genuary17: "A grid inside a grid inside a grid"
#art #loop #creativecoding
#GENUARY #genuary17 #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)
#GENUARY #genuary2023 #genuary6 #genuary17 #genuary13
Day 17 – A grid inside a grid inside a grid.
#genuary #genuary2023 #genuary17 #blender #b3d #geometrynodes #generativeart #phenakistiscope #zoetrope #stroboscope #animation
#animation #stroboscope #zoetrope #phenakistiscope #generativeart #geometrynodes #b3d #blender #genuary17 #genuary2023 #GENUARY
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
#fractal #BlackAndWhite #lineart #creativecoding #creativecode #generativeart #openrndr #genuary17 #genuary2023
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/
#genuary2023 #genuary17 #rtistry #rstats #genartclub #creativecoding
How yesterday´s sketch started:
A school of recursive, glowing, pixelated sea creatures
"Genuary 17: A grid inside a grid inside a grid"
#genuary #genuary2023 #genuary17 #recursion
"""
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 #genuary17 #python #processing #py5 #トゥートprocessing #tootprocessing
#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'
#GENUARY #genuary17 #genuary2023 #p5js
grid × grid × grid
🔭 https://openprocessing.org/sketch/1798249
outputs 👇
#genuary #genuary2023 #genuary17 #creativecoding #generativeart #genart #genartclub
#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
#rtistry #genuary2023 #ggforce #ggplot2 #rstats #GENUARY #genuary17
"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
#GENUARY #genuary2023 #genuary17 #processing #creativecode #creativecodeart
Day 17 of #genuary2023 - A grid inside a grid inside a grid - Took a grid, blew it up multiple times over, then made it a little wobbly. #rtistry in #rstats. #genuary17 #genartclub #genuary
#genuary2023 #rtistry #rstats #genuary17 #genartclub #GENUARY
Genuary day 17: A grid inside a grid inside a grid
#genuary17 #genuary2023 #genuary #plottertoot #penplotter #axidraw #generativeart
#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
#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")
#generativeart #genuary2023 #genuary17 #creativecoding #xquery #svg
It seemed natural for #genuary17 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 (https://github.com/velipso/polybooljs), which is a bit slow (and there's still some shimmer in the thin lines). #genuary https://editor.p5js.org/isohedral/sketches/uh3twEzz4