thobbs / genartlib

Utilities for creating generative artwork with Clojure
MIT License
219 stars 20 forks source link

Tutorial / Project Template Usability Improvements #6

Open thobbs opened 3 years ago

thobbs commented 3 years ago

Notes from one user:

Need to update files and instructions to improve these

verberktstan commented 4 months ago

@thobbs I recently released a library: Genartgear My aim for this is to be used alongside genartlib. It also depends on genartlib and has some useful extra's.

The main idea is the genartgear.core/sketch macro which eases the use of quil's sketches. You can simply call (sketch draw :save 3) to save 3 renders of your draw function. It makes up the filename based on a given :title, git-hash of the latest commit (if applicable), timestamp & the seed used. Or pass in some seeds (sketch draw :seeds [1234 5678] :save true)

Maybe this helps users out with the notes above..