Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.14 KB | None | 0 0
  1. Map_2Di_Col_YDo_1D: 2d map store as 1d, y0 up y1 and x0 -> x1. Point (0,0) bottom left.
  2. [2, 5, 8, 1, 4, 7, 0, 3, 6]
  3. 2   5   8  
  4. 1   4   7  
  5. 0   3   6  
  6.  
  7. Map_2Di_Col_YDo_2D: 2d map store as 1d, y0 up y1 and x0 -> x1. Point (0,0) bottom left.
  8. [[2, 5, 8], [1, 4, 7], [0, 3, 6]]
  9. 2   5   8  
  10. 1   4   7  
  11. 0   3   6
  12.    
  13. Map_2Di_Col_YUp_1D: 2d map store as 1d, y0 up y1 and x0 -> x1. Point (0,0) top left.
  14. [0, 3, 6, 1, 4, 7, 2, 5, 8]
  15. 0   3   6  
  16. 1   4   7  
  17. 2   5   8  
  18.  
  19. Map_2Di_Col_YUp_2D: 2d map store as 1d, y0 down y1 and x0 -> x1. Point (0,0) top left.
  20. [[0, 3, 6], [1, 4, 7], [2, 5, 8]]
  21. 0   3   6  
  22. 1   4   7  
  23. 2   5   8  
  24.  
  25. Map_2Di_Row_YDo_1D: 2d map store as 1d, x0 -> x1 and y0 ^ y1. Point (0,0) bottom left.
  26. [6, 7, 8, 3, 4, 5, 0, 1, 2]
  27. 6   7   8  
  28. 3   4   5  
  29. 0   1   2  
  30.  
  31. Map_2Di_Row_YDo_2D: 2d map store as 2d, x0 -> x1 and y0 ^ y1. Point (0,0) bottom left.
  32. [[6, 7, 8], [3, 4, 5], [0, 1, 2]]
  33. 6   7   8  
  34. 3   4   5  
  35. 0   1   2  
  36.  
  37. Map_2Di_Row_YUp_1D: 2d map store as 1d, x0 -> x1 and y0 down y1. Point (0,0) top left.
  38. [0, 1, 2, 3, 4, 5, 6, 7, 8]
  39. 0   1   2  
  40. 3   4   5  
  41. 6   7   8  
  42.  
  43. Map_2Di_Row_YUp_2D: 2d map store as 2d, x0 -> x1 and y0 down y1. Point (0,0) top left.
  44. [[0, 1, 2], [3, 4, 5], [6, 7, 8]]
  45. 0   1   2  
  46. 3   4   5  
  47. 6   7   8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement