(2017-10-27, 1:36)Michael Horvath Wrote:(2017-10-25, 5:32)Travis Cobbs Wrote: 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;
Where is the output written to?
Output goes to the console window that LDView opens when a debug build is run. I mentioned that in my post.