Forked from fffiloni/canvas-fit-to-container-p5.js
Created
September 17, 2023 21:00
-
-
Save jbinkleyj/c9936e706d95d15ea9576a7134702484 to your computer and use it in GitHub Desktop.
Revisions
-
fffiloni created this gist
Jan 28, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ // HTML index.html // <div id="myCanvasContainer"></div> // JS sketch.js // Inside setup() function let canvasDiv = document.getElementById('myCanvasContainer'); let width = canvasDiv.offsetWidth; let height = canvasDiv.offsetHeight; let sketchCanvas = createCanvas(width,height); sketchCanvas.parent("myCanvasContainer"); sketchCanvas.id('myCanvas');