You are on page 1of 1

void setup()

{
size (800,600);
colorMode(RGB,255);
background(255,255,255);
//frameRate(100);
//stroke(255,0,0);
//line(0, 0, displayWidth, displayHeight);
//stroke(0,255,0);
//line(0, 0, width,height);
//fill(255,255,0);
//strokeWeight(5);
//color c = color(0,255,255,25);
//fill(c);
//ellipse(width/2,height/2,200,100);
//ellipseMode(CENTER);
//ellipse(width/2,height/2,100,100);
//ellipseMode(CORNER);
//fill(102);
//ellipse(width/2,height/2,100,100);
//point(30, 20);
//point(85, 20);
//point(85, 75);
//point(30, 75);
//quad(38, 31, 86, 20, 69, 63, 30, 76);
//rect(30, 20, 55, 55);
//triangle(30, 75, 58, 20, 86, 75);
//noLoop();
}
void draw()
{
println("posio x " + mouseX + " posio y " + mouseY);
}

You might also like