computer generated art
This post is going to be a source of links and information as I explore this subject.
I’ve also enjoyed trying to figure out how things work. Usually the end goal is to make something visual. Something that leaves the viewer inspired and asking how did they do that?
When I think of computer generated art I usually think of coding creating art and not this new Ai generating art. Although Ai Art very interesting and we’ll explore this as well.
Code Art. How do you make it and where to start?
I’ll leave resources to articles and videos so we can learn and have a place for reference.
https://p5js.org/examples/math-additive-wave.html
/** * Radial Gradient. * * Draws a series of concentric circles to create a gradient * from one color to another. */ int dim; void setup() { size(200, 200); dim = width/2; background(0); colorMode(HSB, 360, 100, 100); noStroke(); ellipseMode(RADIUS); frameRate(1); } void draw() { background(0); for (int x = 0; x <= width; x+=dim) { drawGradient(x, height/2); } } void drawGradient(float x, float y) { int radius = dim/2; float h = random(0, 360); for (int r = radius; r > 0; --r) { fill(h, 90, 90); ellipse(x, y, r, r); h = (h + 1) % 360; } }
https://timrodenbroeker.de/web-art-directory/
How to embed a Processing sketch onto an HTML page
https://cs.nyu.edu/~kapp/cs101/processing_on_the_web/