[READ-ONLY] Mirror of https://github.com/probablykasper/canvas-experiments. Just me learning to use HTML canvas canvas-experiments.kasper.space
canvas html5-canvas website
0

Configure Feed

Select the types of activity you want to include in your feed.

bettered small things

KH (Jun 26, 2017, 10:30 PM +0200) 2caa61fe 805dc43d

+8 -1
+8 -1
8/main.js
··· 88 88 } 89 89 }); 90 90 91 + // on click 92 + canvas.addEventListener("click", function(e) { 93 + pos = getTouchPos(e); 94 + 95 + }) 96 + 97 + 91 98 92 99 function startDraw() { 100 + drawing = true; 93 101 c.lineWidth = 1; 94 102 c.strokeStyle = "#ffffff"; 95 - drawing = true; 96 103 } 97 104 function endDraw() { 98 105 drawing = false;