Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 3 Dimensions Array example.
- // // if we say 0,0,0 is x,y,z then:
- static string[, ,] test = new string[,,] { { { "0,0,0", "0,0,1" /*Increases Z */}, /*increases y */ { "0,1,0", "0,1,1" } }, /*increases X */ { { "1,0,0", "1,0,1" }, { "1,1,0", "1,1,1" } } };
- // {{{Z}Y}X}
- {X0{Y0{Z0,Z1},Y1{Z0,Z1}}, X1{Y0{Z0,Z1},Y1{Z0,Z1}}};
- //Shows when the different axis increases
Advertisement
Add Comment
Please, Sign In to add comment