mirror of
https://github.com/lubosz/overte.git
synced 2025-06-03 01:30:27 +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();
|
//results->meshCount = geometry.meshes.count();
|
||||||
|
// qDebug() << "read in" << geometry.meshes.count() << "meshes";
|
||||||
qDebug() << "read in" << geometry.meshes.count() << "meshes";
|
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
foreach(FBXMesh mesh, geometry.meshes) {
|
foreach(FBXMesh mesh, geometry.meshes) {
|
||||||
//get vertices for each mesh
|
//get vertices for each mesh
|
||||||
QVector<glm::vec3> vertices = mesh.vertices;
|
QVector<glm::vec3> vertices = mesh.vertices;
|
||||||
|
|
||||||
qDebug() << "vertex count is" << vertices.count();
|
|
||||||
|
|
||||||
//get the triangle indices for each mesh
|
//get the triangle indices for each mesh
|
||||||
QVector<int> triangles;
|
QVector<int> triangles;
|
||||||
foreach(FBXMeshPart part, mesh.parts){
|
foreach(FBXMeshPart part, mesh.parts){
|
||||||
|
|
Loading…
Reference in a new issue