closes https://github.com/assimp/assimp/issues/1836: make documentation much more clear how to apply global scaling.

This commit is contained in:
Kim Kulling
2018-03-30 16:58:11 +02:00
parent 5ad2582317
commit 4919d3da2f
4 changed files with 8 additions and 11 deletions

View File

@@ -88,13 +88,6 @@ void ScaleProcess::Execute( aiScene* pScene ) {
void ScaleProcess::traverseNodes( aiNode *node ) {
applyScaling( node );
/*for ( unsigned int i = 0; i < node->mNumChildren; ++i ) {
aiNode *currentNode = currentNode->mChildren[ i ];
if ( nullptr != currentNode ) {
traverseNodes( currentNode );
}
}*/
}
void ScaleProcess::applyScaling( aiNode *currentNode ) {