Skip to content
Snippets Groups Projects
Commit d12ed873 authored by Fabian Reister's avatar Fabian Reister
Browse files

SimpleDiffIK: fixing compiler warning

parent f00c44ad
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@
namespace armarx
{
typedef std::shared_ptr<class SimpleDiffIK> SimpleDiffIKPtr;
using SimpleDiffIKPtr = std::shared_ptr<class SimpleDiffIK>;
class SimpleDiffIK
{
......@@ -120,10 +120,11 @@ namespace armarx
DiffIKResult SolveAbsolute(const Eigen::Matrix4f& targetPose);
DiffIKResult SolveRelative(const Eigen::Matrix4f& targetPose, const Eigen::VectorXf& startJointValues);
virtual ~SimpleDiffIKProvider() = default;
private:
VirtualRobot::RobotNodeSetPtr rns;
VirtualRobot::RobotNodePtr tcp;
SimpleDiffIK::Parameters params;
};
}
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