-
```
C:\>python
Python 2.7.10 (default, May 23 2015, 09:44:00) [MSC v.1500 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy as np
>>> np.…
-
In the README.md, the order is scale * orientation * translation * vector.
```
# create a matrix
# start our matrix off using the scale
matrix = Matrix44.from_scale(scale)
# apply our orientati…
ghost updated
5 years ago
-
michael@michael-Precision-7520:~/catkin_ws/src/dope/docker$ ./run_dope_docker.sh
Container name : nvidia-dope-v1
Host directory : /home/michael/catkin_ws/src/dope
Container directory: /roo…
-
Hi
I am confusing about the print output of a Matrix44 object.
By running Matrix44.from_translation, it looks the string visualization is not correct
```
x = pyrr.Matrix44.from_translati…
-
Hi,
Apparently there is no `PySide2` python 2.7 for windows. I can install `PySide`, but running running your app I get an exception:
```
C:\Users\victo\PycharmProjects\PyFlow>py -2 C:\Users\vi…
-
The problem is a bit strange:
1. When I'm trying to run the `renderer_test.py` on one GPU, it works fine.
2. When I'm trying to run the `renderer_test.py` on GPU1 and GPU2 simultaneously, I receiv…
-
-Intalled python 3.6.5
-Installed cythion
-Installed numpy
-Installed irc3
-Installed pyrr
To build cuwo, run `python setup.py build_ext --inplace`. -- did this too
And when i go and run the r…
-
Unit tests failing due to numpy incompatibility with python 3.5.
Ticket filed with numpy here: https://github.com/numpy/numpy/issues/11743
-
I'm trying to write some code that does a multi-pass render. I'm not sure how to utilize the accumulation buffer via ModernGL -- is there an example or is this unsupported?
I looked through the lis…
-
The issues seems to be that in numpy/testing/_private/utils.py ```(x_id == y_id).all()``` on Line 707 is returning a ```bool``` in Python 3.5 and thus calling all on it is giving an ```AttributeError`…