vote up 2 vote down star
1

Generative art means pieces of art which are generated by computers. To get an idea, here is a YouTube video.

Now, I'm not looking for nice pictures or cool blog posts but for actual code samples which I can run and experiment with.

flag

5 Answers

vote up 4 vote down

I'd have a look into Processing. A lot of people have done very cool things with it, and there's plenty of Examples and Tutorials available.

link|flag
vote up 3 vote down

You might want to check out MathMap (full disclosure: I'm its author), which is a simple programming language for image transformation and generation. Example:

filter moire2 ()
    grayColor(sin(x*y/180*pi)*0.5+0.5)
end

gives you

Moire

In the unstable (1.3.4) version, you can also combine filters, even with a GUI.

link|flag
coooooooooooooool. But I feel dizzy now. – Steve B. Mar 20 at 16:28
i just lost 15 minutes staring mindlessly into that image – davr Mar 20 at 16:41
Here's a similar one, animated: complang.tuwien.ac.at/schani/mathmap/… – Mark Probst Mar 20 at 16:45
vote up 1 vote down

yup, processing is the way to go. or C++ if u need low level control of your graphics card.

Now that i think of it, i use to do some using Flash. Check this tutorial on computergraphics

creative art tutorial: generative art in flash

link|flag
vote up 1 vote down

There's a lot of cool stuff on 25lines.com, the downside being that it's fairly obfuscated code, in order to fit inside the limit. Here's two of my favorites: 1, 2. Really shows the power of flash, a lot of people underestimate it (instead thinking they need java or c++ to get good performance of generative art).

link|flag
vote up 1 vote down

You could take a look at Context Free It's a program that generates art from a simple grammar (a bit like turtle graphics) and a random seed. It is also available cross platform and the source code is available under a GPL license.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.