Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. board.onmousedown = function(e) {
  2. var x = e.pageX - this.offsetLeft;
  3. var y = e.pageY - this.offsetTop;
  4. ctx.fillStyle = "#000000"
  5. ctx.beginPath();
  6. ctx.arc(x, y, 10, 0 , 2 * Math.PI, false);
  7. ctx.fill();
  8. ctx.closePath();
  9. ctx.fillText(++node_id, x+10, y-10);
  10. node_set.push({id: node_id, "x": x, "y": y});
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement