We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99863fe commit 4d1e67cCopy full SHA for 4d1e67c
1 file changed
stuff/example.html
@@ -24,8 +24,8 @@
24
25
function draw(e) {
26
var pos = getMousePos(canvas, e);
27
- posx = pos.x;
28
- posy = pos.y;
+ posx = pos.x; // randomize it
+ posy = pos.y; // randomize
29
context.fillStyle = "#000000"; // try to put it in array and randomize it
30
context.beginPath();
31
context.arc(posx, posy, 50, 0, 2 * Math.PI);
0 commit comments