コード例 #1
0
        public static RotationTree getRotationTreeFromFile(RubikFileReader p_File)
        {
            RotationTree     myTree = new RotationTree();
            RotationSequence l_rotationLinkedList = new RotationSequence();

            while (l_rotationLinkedList.readFromFile(p_File))
            {
                myTree.addRotationLinkedList(l_rotationLinkedList);
            }
            return(myTree);
        }