Metadata-Version: 2.0
Name: PyGLM
Version: 0.3.2a1
Summary: OpenGL Mathematics library for Python
Home-page: https://github.com/Zuzu-Typ/PyGLM
Author: Zuzu_Typ
Author-email: zuzu.typ@gmail.com
License: MIT License
Keywords: GLM OpenGL matrix vector vec mat Mathematics 3D
Platform: Windows
Platform: Linux
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Graphics
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development :: Libraries


PyGLM ( WIP )
=============

A semi-complete implementation of OpenGL Mathematics (GLM).

Why "semi-complete"? - PyGLM is missing some features because I wasn't able to 
implement them properly or ignored them, because I thought they weren't going
to be used by anyone anyway (like glm::tvec1).
If you want to request features, please create an issue on the issue tracker.

PyGLM is still in development (hence the WIP).

To install PyGLM, just use the default PyPI procedure.

    pip install PyGLM


To import PyGLM's functions, simply use 'import glm'.

Example:

    import glm

    v = glm.vec3()

    v.x = 7

    z = v.xxx

    print(z)

