Removing a few examples for 2.0

This commit is contained in:
Casey Reas
2011-09-16 00:02:20 +00:00
parent 93b887ee24
commit c3b8b312a0
31 changed files with 318 additions and 417 deletions
@@ -11,16 +11,14 @@
int a = 0; // Create a variable "a" of the datatype "int"
float b = 0.0; // Create a variable "b" of the datatype "float"
void setup()
{
size(200, 200);
void setup() {
size(640, 360);
stroke(255);
frameRate(30);
}
void draw()
{
background(51);
void draw() {
background(0);
a = a + 1;
b = b + 0.2;