xxxxxxxxxx
37
//defining a circle
class cbase {
//circle setup
constructor() {
this.x = 400;
this.y = 400;
}
move() {
this.x = this.x + random(1);
this.y = this.y + random(1);
}
show() {
fill(255, 255, 255);
ellipse(this.x, this.y, 30);
}
}
let carray = [];
function setup() {
createCanvas(400, 400);
//making a new object
let c = new cbase();
}
c = new cbase()
function draw() {
let c
background(0);
fill(255, 255, 255);
//set location
c.move();
//show it
c.show();
}