(2017-10-24, 9:17)Michael Horvath Wrote: I haven't figured out how to print or record the angles in VS yet for debugging purposes.
When you run LDView in debug mode, it opens a console windows for stdout output. Since you're not a C++ programmer, you might want to use std::cout to output debug stuff, since lots of people don't like printf. (Don't forget to #include <iostream> before trying to use std::cout.) Example:
Code:
#include <iostream>
using namespace std;
... blah ... blah ... blah ...
cout << "cameraXRotate: " << cameraXRotate << endl;