Thursday, June 8, 2023
Wednesday, September 14, 2022
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; } }
Source:
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/
Sunday, September 11, 2022
Sunday Fun Day
How is everyone?
Just working on this blog’s layout and going through the code.
Relearning and drawing pixel buttons.
Friday, September 9, 2022
Content Building
Well this is it. A blog. My library of info and Art.
I'll be posting my thoughts and information I've saved along the way.
First, I'm an Artist, Illustrator and Designer.
But that's not all.
Well really it's a lot already.
Trying to work on my passions in between work and sleep, all while dealing with the world and picking a style/ minium of art I should stick with.
Wow so heavy.
Not really.
I just doing what I enjoy as you should as well.
I'm into pixel art, many different illustration styles, collage, painting and mostly drawing. Drawing on my iPad.
I had a blog call https://yeahart.blogspot.com/
posting up artists I like and maybe you would enjoy also.
Oh reminds me, also check out https://pixelhouse.carrd.co/
carrd.co is a cool site you can build one page websites for yourself or for that side hustle like a blog.
Tuesday, September 6, 2022
Sunday, November 28, 2021
Subscribe to:
Posts (Atom)