Fork me on GitHub
#clojure-art
<
2016-02-23
>
karol19:02:37

Also does anyone knows any live internet community based around generative art? 😛

nkraft20:02:03

I wish I could find one. There's sites like https://devart.withgoogle.com and http://www.soban-art.com, and I've played a lot with the C++ Cinder library https://www.libcinder.org, but internet communities seem to be hard to find.

nkraft20:02:26

Are there interactive art libraries for Clojure?

eggsyntax20:02:27

@karol: there are a couple of generative art blogs around, that'd probably be the best place to look.

eggsyntax20:02:56

@nkraft: quil is definitely the big one. http://thi.ng clearly gets used for a lot of generative art stuff. A lot of clj folks write their own. But pretty much any lib you can find in java or JS can be used in clj (some more painfully than others, esp if they're stateful in a fundamental way).

karol20:02:15

thanks for links I will check them out. Something like reddit would be great but gen art sub reddit seems to be almost dead :< It would be nice to have a place where someone could share art and check others for inspiration but sometimes we definetly cant have nice things 😛

eggsyntax20:02:16

It's been a few years since i was involved w/ those communities, but I'm sure they're still out there. You might want to ask a few of the well-known folks in that field -- it's a fairly small world. Casey Reas or Ben Fry, who co-wrote processing, would probably be good folks to ask (@REAS and @benfry respectively).

eggsyntax20:02:29

(on twitter)

nkraft20:02:46

Quil looks interesting, a lot like Cinder, actually, though probably more fun.

karol20:02:09

Because of Clojure REPL Quil is now my main tool for graphics. After having ability to modify running sketch its hard to go back to modify -> compile -> rerun cycle ;d

nkraft21:02:22

I agree, the REPL makes everything better. Still, for things like installation art where I might want to interface something with various bits of hardware, I seem to end up with Cinder again.

nkraft21:02:05

Hopefully, Clojure will catch up in low level and machine control libraries but it may never. The language was really meant for things more elegant than reading sensors.