#genuary25 — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #genuary25, aggregated by home.social.
-
#genuary #genuary25 #genuary2026 #LSystem
Find the sketch-a-day archives and tip jar at: https://abav.lugaralgum.com/sketch-a-day
Code for this sketch at: https://github.com/villares/sketch-a-day/tree/main/2026/sketch_2026_01_25 #Processing #Python #py5 #CreativeCoding -
#GenerativeArt interlude
#genuary25 Organic geometry
Unpleasantly moist circles, from the underside of that old log
-
#genuary25 - Organic Geometry. My favorite fractals are the ones that appear organic, like this one that reminds me of a growing vine.
-
#genuary2025 #genuary25 Day 25: "One line that may or may not intersect itself."
-
#genuary25 One line that may or may not intersect itself
source below
#genuary #pico8 #codeart #tweetcart #tweettweetcart #postcart #postcart #postpostcart #generative #sizecoding
-
Genuary 2025 Day 25:
"One line that may or may not intersect itself"Using Osci-Render and a L-System Lua library by "Ener-G", I am drawing a dragon curve with the Oscilloscope and raise the frequency over time.
On top I wrote an effect script in Lua for a noise-like deformation with falloff from the center
All running in realtime at audio rate!Learned a lot today! 😃
The sound you hear is what draws the image
#Genuary #Genuary2025 #Genuary25 #Day25 #oscilloscope #creativecoding #MastoArt
-
#genuary21 prompt: a collision detection system.
#genuary25 prompt: one line that doesn't intersect itself.The line segments really don't intersect. The first few seconds don't explain it, but things get more obvious later. Sound on.
Made with #PyScript:
https://ambv.pyscriptapps.com/genuary-prompt-21-25/latest/#genuary2025 #genuary #GenerativeArt #CreativeCoding #WebGL #Python
-
A black on black non-intersecting "line" rendered in black and white in cross-eyed stereo.
#genuary #genuary2025 #genuary4 #genuary14 #genuary25
#AlgorithmicArt #CreativeCoding
#Processing #glsl #shaders -
#Genuary25: One line that may or may not intersect itself. This mega plot (40" x 26") was made in record time due to the fact that it's a single line, used a MAGNUM Sharpie. It made for a really cool graphic effect, and is a totally different scale than the majority of what you normally see with pen plots, or so I think at least!
Also made during my art residency at @bantamtools. 😎
For sale @ https://www.Wendt.Art/product/btafr-the-line
#PenPlotter #MastoArt #Genuary #Genuary2025 #ArtFrame -
GENUARY is an artificially generated #month of time where we build #code that makes #beautiful things..
#participate here: https://genuary.art/
#genuary #genuary2024 #genuary25
"i should recreate this with code" created in #processing
This is a #recreation of a #carpet with #geometric #ornaments
#processingIDE #linux #tux #generativeart
#cat #catcontent #safeforwork #abbthecat -
GENUARY is an artificially generated #month of time where we build #code that makes #beautiful things..
#participate here: https://genuary.art/
#genuary #genuary2024 #genuary25
"i should recreate this with code" created in #processing
This is a #recreation of a #carpet with #geometric #ornaments
#processingIDE #linux #tux #generativeart
#cat #catcontent #safeforwork #abbthecat -
Genuary, day 25: "I should try to recreate this with code!"
#genuary #genuary25 #genuary2024 #generativeart #algorithmicart #visualart #art #design #graphicdesign #processing #processing4 #p5js #p5 #algorist #generative #algorithmic #multimediaart #digitalart #creativecoding #typography #kinetictypography #kinetictype #type #generativetypography
-
Genuary, day 25: "I should try to recreate this with code!"
#genuary #genuary25 #genuary2024 #generativeart #algorithmicart #visualart #art #design #graphicdesign #processing #processing4 #p5js #p5 #algorist #generative #algorithmic #multimediaart #digitalart #creativecoding #typography #kinetictypography #kinetictype #type #generativetypography
-
Genuary, day 25: "I should try to recreate this with code!"
#genuary #genuary25 #genuary2024 #generativeart #algorithmicart #visualart #art #design #graphicdesign #processing #processing4 #p5js #p5 #algorist #generative #algorithmic #multimediaart #digitalart #creativecoding #typography #kinetictypography #kinetictype #type #generativetypography
-
Genuary, day 25: "I should try to recreate this with code!"
#genuary #genuary25 #genuary2024 #generativeart #algorithmicart #visualart #art #design #graphicdesign #processing #processing4 #p5js #p5 #algorist #generative #algorithmic #multimediaart #digitalart #creativecoding #typography #kinetictypography #kinetictype #type #generativetypography
-
Genuary, day 25: "I should try to recreate this with code!"
#genuary #genuary25 #genuary2024 #generativeart #algorithmicart #visualart #art #design #graphicdesign #processing #processing4 #p5js #p5 #algorist #generative #algorithmic #multimediaart #digitalart #creativecoding #typography #kinetictypography #kinetictype #type #generativetypography
-
#genuary25 - Recreate a Photo
My house has these Mexican Talavera tiles along a half-wall that we really like. My overly-ambitious idea was to recreate my favorite tiles using basic generative shapes and equations in code, but I only had time to do one tile, so here it is. 23-pound (10.5 kg) cat for scale.
-
#sketch_2022_01_25 #Processing #トゥートProcessing #Python #py5 #genuary #genuary25
S = 600
ns = 1def setup():
size(S, S)
no_stroke()
def draw():
noise_seed(ns)
background(255, 255, 0)
x, f = 8, frame_count
while x < S * 2:
y = 8
while y < S:
M = 16 + 4 * sin(x * 0.05)
h = M * noise(x * 0.01, y * 0.01, f * 0.01) #+ sin(y * 0.005)
fill(0)
circle(x, y, min(M * 0.45, h))
y += min(M * 0.5, h)
x += M * 0.5
fill(255, 255, 0)
rect(0, S - 4, width, 4)
def key_pressed():
global ns
ns += 1