Beispiel #1
0
        private static void RotateFront(Cube s, int n)
        {
            Debug.Assert(n < 4);

            for (int i = 0; i < n; i++)
            {
                s.RotateFrontClockwise90Degree();
            }
        }