A Simple Python 3D Graphics Engine extension for Pyglet, Psychopy, and PyGame. http://ratcave.readthedocs.io/
Questions tagged [ratcave]
3 questions
3
votes
0 answers
How to load Textures in Pyglet and Ratcave
I am making a simple OpenGL 3.3 OBJ viewer in Python using the modules Pyglet and Ratcave. I want to load a textured sphere I made in Blender. While my Pyglet/Ratcave OBJ viewer loads untextured OBJ files, when I add textures to my project, I get…

Jeffrey Thrash
- 31
- 3
2
votes
1 answer
ratcave : 'scipy.spatial.transform.rotation.Rotation' object has no attribute 'as_dcm'
I'm trying to create a project using ratcave for python. But when I import ratcave, I get the following error:
AttributeError: 'scipy.spatial.transform.rotation.Rotation' object has no attribute 'as_dcm'
and this is the full stacktrace:
Traceback…

Egg Choi
- 21
- 1
- 2
0
votes
1 answer
When trying to run a pyglet window, I get this error: "AttributeError: 'scipy.spatial.transform._rotation.Rotation' object has no attribute 'as_dcm'"
This is all my code
import pyglet
import ratcave as rc
window = pyglet.window.Window()
pyglet.app.run()
When running this, the following shows in terminal
Traceback (most recent call last):
File "c:\CODING\pyopengl\Mudge-David-Homework-8.py",…

Mordecai
- 1