Thank you, Daniel. I was able to compile it successfully following the tutorial in one YouTube video, which uses GUI CMAKE rather than the command line of CMAKE.
Helpful YouTube tutorial link https://www.youtube.com/watch?v=hjT7WQLbqqE
Search found 2 matches
- Sat Nov 04, 2023 12:35 am
- Forum: Questions
- Topic: How to export properties such as Box center and Box dimensions
- Replies: 18
- Views: 19563
- Wed Nov 01, 2023 11:34 pm
- Forum: Questions
- Topic: How to export properties such as Box center and Box dimensions
- Replies: 18
- Views: 19563
Re: How to export properties such as Box center and Box dimensions
Well, the code modifications are really easy. In the current version, after the line 8454 of mainwindow.cpp ( csvStream << "meanZ;"; ) you can add: csvStream << "minX;"; csvStream << "minY;"; csvStream << "minZ;"; csvStream << "maxX;"; csvStream << ...