Here is some sketches written with processing:
https://github.com/cameyo42/processing-works
Have a nice day.
4 Likes
Thanks for sharing.
I have a question.
Trying the paletteCreator I have an error in first part of draw()
What does this mean?
void draw()
{
if (start)
{
start = false;
// create palette from image
(WAIT);
createPalette(img);
(ARROW);
}
1 Like
The variable start becomes “true” when pressing the “Create Palette” button.
The statements (WAIT); and (ARROW); are wrong.
They should be cursor(WAIT); and cursor(ARROW);
I have checked the source on github and it is correct.
Have a nice day.
1 Like
Yes that’s true, I didn’t copy it correct in the post, but now I have it working. Nice!
Nice!
I particularly like the voronoi game concept.
1 Like
Thank you so much for sharing this!
1 Like
I downloaded it immediately