Qt 6.11 is out! See what's new in the release
blog
When import the stl file very lager such as more than 2GB ,the QMesh will cant load
-
cos the qbytearry size is int and the max size is less than 2.4GB ,when import the file is very lager ,what can i handle it ?
-
@jimfar I don't think you can handle more than 2GB with QByteArray. You will need to do it differently. Use char* or maybe memory mapped IO (http://doc.qt.io/qt-5/qfiledevice.html#map).