Metadata-Version: 2.1
Name: multivectors
Version: 0.0.0
Summary: Compute blades and multivectors in arbitrary-dimensional space.
Home-page: https://github.com/Kenny2github/MultiVectors
Author: Ken Hilton
License: Apache
Description: # multivectors
        Compute blades and multivectors in arbitrary-dimensional space.
        
        ## Installation
        ```
        pip install multivectors
        ```
        
        ## Usage
        ```py
        import math
        from multivectors import x, y, z
        
        v = 2*x + 3*y + 4*z
        print(v.rotate(math.pi/2, x * y))
        ```
        Output:
        ```
        (-3.00x + 2.00y + 4.00z)
        ```
Keywords: multivector geometric algebra
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Typing :: Typed
Requires-Python: >=3.7
Description-Content-Type: text/markdown
