Update changed folder name
This commit is contained in:
21
CM2030 Graphics Programming/Topic 2/2.2.3/sketch.js
Normal file
21
CM2030 Graphics Programming/Topic 2/2.2.3/sketch.js
Normal file
@ -0,0 +1,21 @@
|
||||
function setup() {
|
||||
createCanvas(900, 600);
|
||||
background(0);
|
||||
}
|
||||
|
||||
function draw()
|
||||
{
|
||||
background(125);
|
||||
|
||||
let mouse = createVector(mouseX, mouseY);
|
||||
let center = createVector(width/2, height/2);
|
||||
|
||||
mouse.sub(center);
|
||||
//mouse.mult(0.5);
|
||||
mouse.div(2);
|
||||
|
||||
translate(width/2, height/2);
|
||||
strokeWeight(3);
|
||||
|
||||
line(0, 0, mouse.x, mouse.y);
|
||||
}
|
||||
Reference in New Issue
Block a user