I’m using the approach shown in the following questions for embedding an Axes3D in a PyQt4 widget:
When starting the application, I can not rotate the axes via mouse movement anymore. What do I need to do to enable the rotation again?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Any time you call something like
Axes3D.clear(), then to enable mouse rotation again you have to callAxes3D.mouse_init().Seems to be undocumented, but it works for me! Source