mirror of
https://github.com/lubosz/overte.git
synced 2025-04-26 16:55:31 +02:00
adjust debugging prints
This commit is contained in:
parent
4a7dd2b3e6
commit
adfacf1e98
1 changed files with 1 additions and 4 deletions
|
@ -39,16 +39,13 @@ bool vhacd::VHACDUtil::loadFBX(const QString filename, vhacd::LoadFBXResults *re
|
|||
|
||||
|
||||
//results->meshCount = geometry.meshes.count();
|
||||
|
||||
qDebug() << "read in" << geometry.meshes.count() << "meshes";
|
||||
// qDebug() << "read in" << geometry.meshes.count() << "meshes";
|
||||
|
||||
int count = 0;
|
||||
foreach(FBXMesh mesh, geometry.meshes) {
|
||||
//get vertices for each mesh
|
||||
QVector<glm::vec3> vertices = mesh.vertices;
|
||||
|
||||
qDebug() << "vertex count is" << vertices.count();
|
||||
|
||||
//get the triangle indices for each mesh
|
||||
QVector<int> triangles;
|
||||
foreach(FBXMeshPart part, mesh.parts){
|
||||
|
|
Loading…
Reference in a new issue