This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Background transparency issue fixed...
As the context of a Processing.js app. is different from that of a Native Processing app, a clear() function was added to the Processing.js library.
In essence, this means you can clear the background of your Processing.js script to reveal the DOM elements behind.
I believe it is NOT possible to clear the background of Native Processing application to reveal the desktop. Go web!
Usage:
- clear(); – This clears the whole Canvas and reveals any elements or page-background behind the Canvas element.
- clear(x1, y1, x2, y2); – This clears a defined rectangle of the Canvas background from top-left to bottom-right;






