Skip to content

Commit

Permalink
Comment unused variables in this commit
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Perez <[email protected]>
  • Loading branch information
Blast545 committed Nov 24, 2020
1 parent 12d0d3b commit 7fbd746
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion bullet/src/EntityManagementFeatures.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
//MISSIN INCLUDES
#include <btBulletDynamicsCommon.h>

#include <string>
Expand Down
8 changes: 4 additions & 4 deletions bullet/src/SDFFeatures.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Identity SDFFeatures::ConstructSdfModel(
// Read sdf params
const std::string name = _sdfModel.Name();
const auto pose = _sdfModel.RawPose();
const bool isStatic = _sdfModel.Static();
const bool selfCollide = _sdfModel.SelfCollide();
// const bool isStatic = _sdfModel.Static();
// const bool selfCollide = _sdfModel.SelfCollide();

const auto &world = this->worlds.at(_worldID)->world;
// const auto &world = this->worlds.at(_worldID)->world;
const auto modelIdentity = this->AddModel({name, _worldID});

// Build links
Expand All @@ -55,7 +55,7 @@ Identity SDFFeatures::ConstructSdfLink(
const auto diagonalMoments = inertial.MassMatrix().DiagonalMoments();

// Get link properties
const btScalar linkMass = mass;
// const btScalar linkMass = mass;
const btVector3 linkInertiaDiag =
convertVec(ignition::math::eigen3::convert(diagonalMoments));

Expand Down

0 comments on commit 7fbd746

Please sign in to comment.