Guest User

Untitled

a guest
Jul 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function drawGrid() {
  2.  
  3. stroke(200);
  4. strokeWeight(1);
  5. fill(120);
  6.  
  7. for (var x = -width; x < width; x += 40) {
  8. line(x, -height, x, height);
  9. text(x, x + 1, 12);
  10. }
  11. for (var y = -height; y < height; y += 40) {
  12. line(-width, y, width, y);
  13. text(y, 1, y + 12);
  14. }
  15. }
Add Comment
Please, Sign In to add comment