-
Notifications
You must be signed in to change notification settings - Fork 29
Home
The wiki is still pretty young and not at all complete.
I recommend starting at PyGLM Types.
Currently there is no reference for most of PyGLM's functions, so please refer to the Python help information.
>>> help(glm.identity)
Help on built-in function identity in module glm:
identity(...)
identity(matrix_type) -> matrix
Builds an identity matrix.
Feel free to browse through the other wiki pages.
Thank you for using PyGLM!
You will find an overview on the [Passing data to external libs] page.
Most likely you've installed glm, a JSON parser and not PyGLM (or a very early version of PyGLM).
The correct install command is:
pip install PyGLM
I prefer not to add too many experimental extensions to PyGLM, especially as they might change or be removed in the future and it is simply too much effort for me to keep up with all that.
If you need a specific experimental extension, feel free to submit a feature request on the issue tracker.
I try adding them on a one-by-one basis.
Starting with version 0.5.0b1 I decided to use C++ to build Python, using glm under the hood - which requires C++ 11 or upwards.
Only Python versions 3.5+ support C++ 11, thus I was forced to stop supporting older versions.
The last version to support Python 2 and <3.5 is 0.4.8b1.