Tagged Questions
2
votes
1answer
572 views
Just installed QtOpenGL but cannot import it (from Python)
I just installed it with apt-get on debian linux with
apt-get install libqt4-opengl
the rest of PyQt4 is available, but I cant get to this new module.
from PyQt4 import QtOpenGL
raises ...
0
votes
1answer
260 views
How to uncheck a checkbox to stop infinite drawing in pyqt?
My problem is I want to keep rotating the scene if the checkbox is checked, and stop this rotation immediately once it is unchecked. However, "keep rotating" means an infinite loop...
So after ...