rename directories and add adittional dir
This commit is contained in:
parent
45d99d6580
commit
905ab331f4
18 changed files with 88 additions and 0 deletions
16
1/sketch.js
Normal file
16
1/sketch.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
function drawCanvasContent(){
|
||||
createCanvas(windowWidth, windowHeight)
|
||||
background(255)
|
||||
for (let i = 0; i <= 50; i++) {
|
||||
fill(0, 0, 0, 0)
|
||||
square(random(width/2), random(height/2), random(width/8, width/2))
|
||||
}
|
||||
}
|
||||
|
||||
function setup() {
|
||||
drawCanvasContent();
|
||||
}
|
||||
|
||||
function mouseMoved() {
|
||||
drawCanvasContent();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue