Difference between revisions of "Template:Tongji Software/sketchMain"

(Created page with "var v= 1; var locationX=0; var locationY=0; function setup() { // put setup code here createCanvas(window.innerWidth, window.innerHeight); } function draw() { // put...")
 
Line 4: Line 4:
 
function setup() {
 
function setup() {
 
   // put setup code here
 
   // put setup code here
     createCanvas(window.innerWidth, window.innerHeight);
+
     createCanvas(500,500);
  
 
}
 
}

Revision as of 15:53, 14 August 2019

var v= 1; var locationX=0; var locationY=0; function setup() {

 // put setup code here
   createCanvas(500,500);

}

function draw() {

 // put drawing code here
   locationX = locationX+v;
   locationY = locationY+v;
   colorMode(HSB);
   background(255, 204, 100);
   ellipse(mouseX,mouseY,80,80);

}