🔦🎤 Checkpoint

./script.js:9517054/301
This commit is contained in:
Glitch (glitch-hello-website) 2022-03-06 01:31:07 +00:00
parent a39a119ad8
commit 32fd1dde91

View file

@ -46,20 +46,13 @@ function draw() {
const spacing = 60;
const depth = 0.5;
ctx.beginPath();
// ctx.arc(
// i * spacing - (offx % (spacing / depth)) * depth,
// j * spacing - (offy % (spacing / depth)) * depth,
// 5,
// 0,
// 2 * Math.PI
// );
ctx.rect(
ctx.arc(
i * spacing - (offx % (spacing / depth)) * depth,
j * spacing - (offy % (spacing / depth)) * depth,
10,
10,
5,
0,
2 * Math.PI
);
ctx.fill();
}
}