home.social

#genuary25 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #genuary25, aggregated by home.social.

  1. #genuary25 - Organic Geometry. My favorite fractals are the ones that appear organic, like this one that reminds me of a growing vine.

    #genuary #genuary2026 #fractal #beanstalk

  2. #genuary2025 #genuary25 Day 25: "One line that may or may not intersect itself."

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

  4. #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:
    ambv.pyscriptapps.com/genuary-

    #genuary2025 #genuary #GenerativeArt #CreativeCoding #WebGL #Python

  5. #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 @ Wendt.Art/product/btafr-the-li
    #PenPlotter #MastoArt #Genuary #Genuary2025 #ArtFrame

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

    #genuary #talavera #tiles #cat

  7. #sketch_2022_01_25 #Processing #トゥートProcessing #Python #py5 #genuary #genuary25

    S = 600
    ns = 1

    def 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