Home / Coracle
A portable generative/art/sketch playground written in Kotlin
All development is done in Jetbrains IDEA, clone the Coracle repository and open the web or Android project.
Coracle uses the same basic sketch pattern as Processing, you initialise state in setup()
, then mutate values and update the screen in draw()
class MyDrawing: Drawing() {
override fun setup() {
//Setup state
}
override fun draw() {
//Draw in the main draw loop
}
}
You probably don't want to use this, it was an itch I needed to scratch and there will be no support whatsoever.
I've not decided on a license yet, but if you think it was okay for the FSF to readmit Richard Stallman you can't use it.