From adfacf1e9830611c78f6c8375752b5653946420f Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Sat, 7 Mar 2015 07:53:45 -0800 Subject: [PATCH] adjust debugging prints --- tools/vhacd/src/VHACDUtil.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/vhacd/src/VHACDUtil.cpp b/tools/vhacd/src/VHACDUtil.cpp index 4c8a9eb62d..bc9ad09bde 100644 --- a/tools/vhacd/src/VHACDUtil.cpp +++ b/tools/vhacd/src/VHACDUtil.cpp @@ -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 vertices = mesh.vertices; - qDebug() << "vertex count is" << vertices.count(); - //get the triangle indices for each mesh QVector triangles; foreach(FBXMeshPart part, mesh.parts){