Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Dec 16, 2021
1 parent 59a8a12 commit df90cda
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions dart/dynamics/MeshShape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,13 +381,9 @@ aiScene* MeshShape::cloneMesh() const
// Create new assimp mesh
aiScene* new_scene = new aiScene();
// Copy basic data
new_scene->mNumAnimations
= 0; // we do not care about animations // new_scene->mNumAnimations =
// mMesh->mNumAnimations;
new_scene->mNumCameras = 0; // we do not care about cameras //
// new_scene->mNumCameras = mMesh->mNumCameras;
new_scene->mNumLights = 0; // we do not care about lights //
// new_scene->mNumLights = mMesh->mNumLights;
new_scene->mNumAnimations = 0; // we do not care about animations
new_scene->mNumCameras = 0; // we do not care about cameras
new_scene->mNumLights = 0; // we do not care about lights
new_scene->mNumMaterials = mMesh->mNumMaterials;
new_scene->mNumMeshes = mMesh->mNumMeshes;
new_scene->mNumTextures = mMesh->mNumTextures;
Expand Down

0 comments on commit df90cda

Please sign in to comment.