Metadata-Version: 1.1
Name: pycuber
Version: 0.1b4
Summary: Rubik's Cube in Python
Home-page: http://github.com/adrianliaw/PyCuber
Author: Adrian Liaw
Author-email: adrianliaw2000@gmail.com
License: MIT
Description: 
        PyCuber
        =======
        
        PyCuber is a Rubik’s Cube simulator in Python 2/3.
        --------------------------------------------------
        
        The cube can be revealed as expanded view in the terminal, so it’s easy
        to visualise the cube, just inside the terminal.
        
        .. code:: python
        
        
            import pycuber as pc
        
            # Create a Cube object
            mycube = pc.Cube()
        
            # Do something at the cube.
            mycube("R U R' U'")
        
            print(mycube)
        
        ::
        
        We also provided some useful tools to deal with Rubik’s Cube algorithms.
        
        .. code:: python
        
        
            import pycuber as pc
        
            # Create an Algo object
            myalg = pc.Algo("R U R' U' R' F R2 U' R' U' R U R' F'")
        
            # Reversing an Algo
            myalg.reverse()
            print(myalg)
        
            # Mirroring an Algo object
            myalg.mirror("LR")
            print(myalg)
        
        ::
        
            F R U' R' U R U R2 F' R U R U' R'
            F' L' U L U' L' U' L2 F L' U' L' U L
        
        I’ll add some documentations later.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Mathematics
