Advertisement
LinKin

Cube rotation

May 15th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.15 KB | None | 0 0
  1. /* rotate right */
  2. long RR[] = { 3,0,1,2,4,5 };
  3. /* rotate front */
  4. long RF[] = { 4,1,5,3,2,0 };
  5. /* rotate center */
  6. long RC[] = { 0,4,2,5,3,1 };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement