FBX-Importer: put debug printf into comments.

pull/837/head
Kim Kulling 2016-03-22 20:25:29 +01:00
parent 76e4e82ecb
commit ca0fa2ba69
1 changed files with 3 additions and 3 deletions

View File

@ -655,13 +655,13 @@ void ParseVectorDataArray(std::vector<aiVector3D>& out, const Element& el)
static_cast<float>(d[1]),
static_cast<float>(d[2])));
}
for ( size_t i = 0; i < out.size(); i++ ) {
// for debugging
/*for ( size_t i = 0; i < out.size(); i++ ) {
aiVector3D vec3( out[ i ] );
std::stringstream stream;
stream << " vec3.x = " << vec3.x << " vec3.y = " << vec3.y << " vec3.z = " << vec3.z << std::endl;
DefaultLogger::get()->info( stream.str() );
}
}*/
}
else if (type == 'f') {
const float* f = reinterpret_cast<const float*>(&buff[0]);