Advertisement
Guest User

Untitled

a guest
May 22nd, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. // x coordinate of the first, bottom left grid center point
  2. _startx=2000;
  3.  
  4.  
  5. // y coordinate of the first, bottom left grid center point
  6. _starty=2000;
  7.  
  8. // gridsize x (how many single squares in the grid) for the x-axis
  9. _gridsize_x=9;
  10.  
  11. // gridsize y (how many single squares in the grid) for the y-axis
  12. _gridsize_y=9;
  13.  
  14. // distance from the center of one square of the grid to the border of that square. so overall size of a square in the grid is 2x gridwidth / 2x gridwidth
  15. _gridwidth = 1000;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement