Some P5 sketches I made.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
279 B

ball = new BallSwing(150, 0, 300, 150, 10)
function setup() {
// put setup code here
createCanvas(300,300);
//frameRate(60);
}
function draw() {
// put drawing code here
background(32);
fill(128);
stroke(128);
strokeWeight(2);
ball.draw();
ball.update();
}