Skip to content
Snippets Groups Projects
Unverified Commit 7532f7bb authored by Justin Carpentier's avatar Justin Carpentier Committed by GitHub
Browse files

Merge pull request #71 from jmirabel/transform_mutex

Remove mutex Transform3f::lock_
parents f68ff486 d26d11c2
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,6 @@ inline bool areQuatEquals (const Quaternion3f& q1, const Quaternion3f& q2)
/// @brief Simple transform class used locally by InterpMotion
class Transform3f
{
boost::mutex lock_;
/// @brief Whether matrix cache is set
mutable bool matrix_set;
/// @brief Matrix cache
......
......@@ -46,7 +46,6 @@ namespace fcl
const Matrix3f& Transform3f::getRotationInternal() const
{
boost::mutex::scoped_lock slock(const_cast<boost::mutex&>(lock_));
if(!matrix_set)
{
R = q.toRotationMatrix();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment