loackme · @loackme
705 followers · 251 posts · Server genart.social

I had never implemented a marching squares algorithm, so I decided to give it a go. Consider this a late submission to 'Something you’ve always wanted to learn'. 😅

#genuary13

Last updated 2 years ago

Jake Donham · @jakedonham
171 followers · 179 posts · Server sfba.social

haven't had much time for so I'm packing 'em in — this is "Steal Like An Artist" (after Helen Lundeberg), "A grid inside a grid inside a grid" and "Something you've always wanted to learn" (Chaikin's algorithm)

#GENUARY #genuary2023 #genuary6 #genuary17 #genuary13

Last updated 2 years ago

lefredj · @lefredj
110 followers · 86 posts · Server mastodon.art

Not on schedule, but who cares...
Something you’ve always wanted to learn

#creativecoding #DigitalArt #generativeart #GENUARY #genuary13

Last updated 2 years ago

Steven Dollins · @scdollins
388 followers · 76 posts · Server genart.social

Trippy Tiles

This matches half a dozen different prompts (loop, tessellation, intersections, sines), but I'll go with
: Something you’ve always wanted to learn

#GENUARY #genuary13 #genuary2023 #processing #glsl

Last updated 2 years ago

BoyD · @Boyd
5 followers · 3 posts · Server genart.social
Alex J. Champandard ❄️ · @alexjc
1462 followers · 834 posts · Server creative.ai

RT @alexis_o_O@twitter.com

Something you’ve [always] wanted to learn, something I'll need tomorrow tapes on random path... day 13.

🐦🔗: twitter.com/alexis_o_O/status/

#genuary #genuary13 #genuary2023

Last updated 2 years ago

duct tape code · @ducttapecode
108 followers · 352 posts · Server genart.social

I always wanted to learn shaders. So here is my first one on shadertoy

shadertoy.com/view/DtBGWG

#genuary13 #GENUARY #genuary2023 #shadertoy

Last updated 2 years ago

Elliot Schultz · @elliot
127 followers · 30 posts · Server mastodon.art

Day 13 – Something you've always wanted to learn.

Noise that loops both temporally and spatially, a continuation of something I tackled last year.

#animation #stroboscope #zoetrope #phenakistiscope #generativeart #geometrynodes #b3d #blender #genuary13 #genuary2023 #GENUARY

Last updated 2 years ago

· @Pumaparded
52 followers · 39 posts · Server mastodon.social

Only partially learnt it but got a point cloud from a mesh and animated transitions with . Did want too animate between two shapes but got a little confused about how to pass the second position as an attribute?

tomjhinton.github.io/genuary23

#R3F #GENUARY #genuary2023 #genuary13

Last updated 2 years ago

Craig S. Kaplan · @csk
412 followers · 101 posts · Server mathstodon.xyz

Oh my, tomorrow's prompt is "sine waves". Should have looked at that before I wrote this sketch for . Heh.

#genuary13

Last updated 2 years ago

Craig S. Kaplan · @csk
397 followers · 97 posts · Server mathstodon.xyz

I also had to jump back and pick up , which I missed yesterday. The prompt is "Something you’ve always wanted to learn", which is inevitably a vast topic. I implemented Sinuous Meander patterns (based on Whewell equations) as described by David Chappell. See archive.bridgesmathart.org/201 and tandfonline.com/doi/abs/10.108. editor.p5js.org/isohedral/sket

#GENUARY #genuary13

Last updated 2 years ago

Koma Tebe · @komatebe
132 followers · 38 posts · Server genart.social

= SIHAWTL! =
"Something you’ve always wanted to learn"
genuary2023 prompt 13
.
.

#genuary2023 #GENUARY #genuary13 #tessellation #p5js #webgl #3d #generative #CreativeToots

Last updated 2 years ago

hexxaudio · @hexxaudio
37 followers · 65 posts · Server genart.social

& - I've always wanted to learn L-systems, so I took an approach to create some Aesemic characters. Heres the result!

#genuary13 #genuary14 #GENUARY #genart #genuary2023

Last updated 2 years ago

Laurent Houdard · @lh
191 followers · 43 posts · Server genart.social

Generative music part II, this time with something I've always wanted to learn: raw webaudio API. Let's start with a simple ambient generative patch...

🔊 houdard.net/genuary-2023-13/

#genuary13 #GENUARY

Last updated 2 years ago

Hansup · @hansup
376 followers · 581 posts · Server mastodon.social

For : to just sit down and read/watch people play/explain their adventures in making generative art.
Currently into curves thanks to Keith Peters: bit-101.com/blog/
:)

#genuary13

Last updated 2 years ago

Richard Gil · @richardegil
4 followers · 14 posts · Server mastodon.social

"Something you’ve always wanted to learn."

I've always loved the look of flow fields. I found a great explanation by Hadeel Alharthi and produced this. Just scratching the surface but excited to explore this technique more.

#GENUARY #genuary2023 #genuary13 #processing #creativecode #creativecodeart

Last updated 2 years ago

Metamere · @Metamere
30 followers · 37 posts · Server genart.social

Genuary 2023 day 13: Something you’ve always wanted to learn

I thought about working on shaders, or reaction-diffusion algorithms, but I was pretty tired today and didn't feel up for that, so instead I forked day 8's sketch and delved deeper into signed distance functions, which I had been looking forward to learning about this month. I'm really pleased that I managed to make exactly what I had envisioned. SDFs are great!

openprocessing.org/sketch/1794

#GENUARY #genuary13 #p5js

Last updated 2 years ago

"""
sketch_2022_01_13

Learning how to make a np_array based Py5Image for exploration
"""
import py5
import numpy as np

def setup():
global HW, HH, img
py5.size(600, 600)
HW = py5.width / 2
HH = py5.height / 2
img = py5.create_image(600, 600, py5.ALPHA)

def L(x, y): return np.linalg.norm((x, y)) # return (x * x + y * y) ** 0.5

@np.vectorize
def vsdf(x, y, xo):
ring = abs(L(x - 50, y - 50) - 100 + xo) - 50
return min(y + 2 * xo, ring, x + 2 * xo)

def draw():
py5.translate(HW, HH)
xg, yg = np.mgrid[-300:300, -300:300]
dg = vsdf(xg, yg, py5.mouse_x - HW)
py5.create_image_from_numpy(dg, 'L', dst=img)
py5.image(img, -HW, -HH)

py5.run_sketch()

#processing #sdf #python #py5 #genuary #genuary13

Last updated 2 years ago

Carson Kompon · @carson
72 followers · 37 posts · Server mastodon.gamedev.place

The prompt for today was "Something you've always wanted to learn". So I decided to play around with Verlet Physics thanks to this fantastic resource: datagenetics.com/blog/july2201

#genuary13 #pico8 #GENUARY

Last updated 2 years ago

Justin Riley · @ohiofi
220 followers · 199 posts · Server cmh.one

Worked on shaders and I definitely understand them better now. I was able to reuse my SDF code in the shader.

"Genuary 13: Something you’ve always wanted to learn"

#genuary #genuary2023 #genuary13 #learning

Last updated 2 years ago