Added NoBackgroundTest example to Demos/Tests

This commit is contained in:
codeanticode
2012-12-07 17:42:14 +00:00
parent 6d29346cb9
commit 55c00abbf0
2 changed files with 20 additions and 0 deletions
@@ -0,0 +1,10 @@
void setup() {
size(400, 400, P2D);
background(255, 0, 0);
fill(255, 150);
}
void draw() {
ellipse(mouseX, mouseY, 100, 100);
}