Removed p5 functions that caused home page to hang

This commit is contained in:
2025-10-20 17:30:03 -05:00
parent cd75a1f0d5
commit 9156e80c37

View File

@ -6,20 +6,6 @@ rock = new Image();
rock.src = "/media/Art/Rock1.png";
function setup(){
let canvas = createCanvas(ctx.canvas.width, ctx.canvas.height);
}
function draw(){
x = 0;
y = 0;
drawCircle(x, y, 200);
x += 1;
y -= 0.001;
}
var resolutionTag = document.getElementById("resolutionTag");
resolutionTag.textContent = "document: " + window.screen.availWidth + "x" + window.screen.availHeight + ", inner window: " + window.innerWidth + "x" + window.innerHeight;