Masthash

#genuary17

Yann Le Gall
6 months ago

quad tree walk with ray tracing.
#genuary #genuary17: "A grid inside a grid inside a grid"
#art #loop #creativecoding

Jake Donham
8 months ago

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)

overlapping webs of cut-out polygons in a hex grid pattern
Axel Tanner
8 months ago

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

continuously zooming into a grid exposing the same structure on a lower level like a fractal
Jacquie
8 months ago

#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/

#genuary17 #rtistry #rstats #genartclub #creativecoding

The image is a piece of generative art created by Jacquie Tran and written in the R programming language. The background is a very pale blue. In the foreground, there are triangles arranged in a grid, with different orientations in different grid "cells". In some cells, the triangles take up half the space, in other cells there are four or eight small triangles arranged within. Some of the triangles are filled with a solid colour only (burgundy, navy blue, gold, light blue, and grey), and other triangles are solid-filled with a light speckle on top mimicking dust.

How yesterday´s sketch started:

#genuary17 #genuary

Grid inside a grid inside a grid, where each cell is filled with a diagonal line either to the left or to the right, creating a maze like structure. The diagonals from left to right are extended by colored rectangles.

A school of recursive, glowing, pixelated sea creatures

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

#genuary #genuary2023 #genuary17 #recursion

Computer generated art of a school of recursive, glowing, pixelated sea creatures

"""
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()

a recursive grid made of blue squares and smaller grids of circles, mostly green but with varying colors
Metamere
8 months ago

#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.

https://openprocessing.org/sketch/1798157

Richard Boeser
8 months ago

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

#genuary #genuary17 #genuary2023 #p5js

Three differently oriented panes each with a tile grid. Tiles are not drawn in the correct order, creating a weird perspective.
Three differently oriented panes each with a tile grid. Tiles are not drawn in the correct order, creating a weird perspective.
Three differently oriented panes each with a tile grid. Tiles are not drawn in the correct order, creating a weird perspective.
Three differently oriented panes each with a tile grid. Tiles are not drawn in the correct order, creating a weird perspective.
Antonio Páez
8 months ago

#Genuary17 #Genuary

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

@jacquietran

A cool grid, inside a fiery grid, inside a woobly grid
emre meydan | thresfold
8 months ago

Genuary day 17: A grid inside a grid inside a grid

#genuary17 #genuary2023 #genuary #plottertoot #penplotter #axidraw #generativeart

David Carew
8 months ago

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

A pen plotter drawing in purple ink of a grid of parallelograms filled with small grids at random angles. A grid of straight rectangles is overlaid on everything.
Mary Holstege
8 months ago

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

#genuary2023 #genuary17 #CreativeCoding #XQuery #SVG

The canvas is divided into four quadrants. In each quadrant is an arrangement of rectangles with rectangles. In the larger rectangles is an isohedral tiling of some sort, with some wild edges in some cases. The tiles and boxes are coloured in various soft rainbow colours. The upper left quadrant has trifold blades giving a woven appearance. The top right quadrant has soft square checkerboards. The bottom left quadrant has vaguely hexagonal shapes, with some overlapping edges. The bottom right quadrant looks like a somewhat melted version of an isometric projection of a cube array (the tiles are squished up quadrangles).
tiago
8 months ago

A grid inside a grid inside a grid. #genuary17 #genuary

Bitwise map.
voorbeeld
8 months ago

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.

#genuary2023

Elio Campitelli
8 months ago

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.

#genuary #genuary17 #StableDiffusion.

An infinite zoom into a bunch of cubes.
craigphares
8 months ago

Day 17: A grid inside a grid inside a grid
View from inside a Menger sponge
#genuary #genuary2023 #genuary17

Dora Vlady
8 months ago

#genuary17, #genuary 2023 Day 17
A grid inside a grid inside a grid

Laurent Malys
8 months ago

#genuary 17 - A grid inside a grid inside a grid

made with #p5js
#genuary17 #creativecoding #art #generativeart

A grid of black and white bordered squares that are smoothly subdivided several times, then we zoom on 4 adjacents square and the subdivision continues
Carson Kompon
8 months ago

#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

Steven Dollins
8 months ago

GUI: Gratuitous User Interface
#genuary17: a grid (inside a grid)^n

#genuary #genuary2023 #Processing

raised or lowered nested colored boxes with shadows looking like an enormously cluttered user interface

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

Generative Art of a grid, with nested grids, and nested grids within them. There are small circles where some of the lines intersect.

#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

Hundreds of colored horizontal and vertical planes rotated 45 degrees arranged in a grid structure.
this.xor.that :heart_nb:
8 months ago

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

Distorted grid of pastels and black.
Steven Dollins
8 months ago

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 #genuary2023

a grid of grids of floor grids of a 6-D maze with single- or double-arrowheads showing the "stairs" between floors.
ruud de rooij
8 months ago

Genuary 2023, day 17: A grid inside a grid inside a grid.

Intersected superellipses.

#genuary #genuary2023 #genuary17

Close-up photo of a drawing made with an AxiDraw pen plotter. The drawing consists of many small shapes constructed by intersecting multiple superellipses.
Photo of a drawing made with an AxiDraw pen plotter. The drawing consists of many small shapes constructed by intersecting multiple superellipses.
Wanda Oliver
8 months ago

#genuary #genuary2023 #genuary17 Grid within a grid within a grid:

Matthew Hughes
8 months ago

Genuary Day 17: A grid inside a grid inside a grid

#genuary #genuary17 #loop

Recursively shrinking blocks
Taupelink
8 months ago

Prompt: A grid inside a grid inside a grid. #genuary #genuary17 #genuary2023

A square figure comprising many smaller squares and rectangles of varying colors. Hue tends to cycle from orange to green to blue to purple as you move from top to bottom. Lightness tends to vary from low to high as you move from left to right.
Dave Pagurek
8 months ago

#genuary17: grid within a grid within a grid. hey who does that remind you of? time for Mondrian!! #genuary https://openprocessing.org/sketch/1797489

Aaron Reuland
8 months ago

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.

#genuary17 #genuary17 #recursion #p5js

Warmly colored recursive grid, coded art
loackme
8 months ago

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

MathTechCoach
8 months ago

Here is my #genuary17 (A grid inside a grid inside a grid) contribution to #genuary2023, created in #Desmos.

https://www.desmos.com/calculator/qgwila428w

Here is my #genuary17 (A grid inside a grid inside a grid) contribution to #genuary2023, created in @Desmos.

https://www.desmos.com/calculator/qgwila428w
Guido Schmidt
8 months ago
sɹɐʎA xɘlA 💻➡🗑
8 months ago

"A grid inside a grid inside a grid" for #Genuary17. Several octaves of nearest-neighbor value noise, with Sobel edges.

#Genuary #Genuary2023

Overlapping squares of various sizes, with pulsing colors.
Camille Roux - Generative Art
8 months ago

#genuary2023 Day 17: A grid inside a grid inside a grid (prompt by @adiotalleviart@twitter.com)

#genuary #genuary17 #genartclub #generative #glsl #perfectloop

Fractal Kitty
8 months ago

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

#genuary15 #genuary17 #genuary #mathart