Skip to content

Commit

Permalink
split namespace between left and right arm
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jan 18, 2017
1 parent d5a1571 commit 10ef638
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='ASCII'?>
<library path="lib/libnextage_left_arm_moveit_ikfast_plugin">
<class name="nextage_left_arm_kinematics/IKFastKinematicsPlugin" type="ikfast_kinematics_plugin::IKFastKinematicsPlugin" base_class_type="kinematics::KinematicsBase">
<class name="nextage_left_arm_kinematics/IKFastKinematicsPlugin" type="nextage_left_arm_ikfast_kinematics_plugin::IKFastKinematicsPlugin" base_class_type="kinematics::KinematicsBase">
<description>IKFast61 plugin for closed-form kinematics</description>
</class>
</library>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='ASCII'?>
<library path="lib/libnextage_right_arm_moveit_ikfast_plugin">
<class name="nextage_right_arm_kinematics/IKFastKinematicsPlugin" type="ikfast_kinematics_plugin::IKFastKinematicsPlugin" base_class_type="kinematics::KinematicsBase">
<class name="nextage_right_arm_kinematics/IKFastKinematicsPlugin" type="nextage_right_arm_ikfast_kinematics_plugin::IKFastKinematicsPlugin" base_class_type="kinematics::KinematicsBase">
<description>IKFast61 plugin for closed-form kinematics</description>
</class>
</library>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const double LIMIT_TOLERANCE = .0000001;
/// \brief Search modes for searchPositionIK(), see there
enum SEARCH_MODE { OPTIMIZE_FREE_JOINT=1, OPTIMIZE_MAX_JOINT=2 };

namespace ikfast_kinematics_plugin
namespace nextage_left_arm_ikfast_kinematics_plugin
{

#define IKFAST_NO_MAIN // Don't include main() from IKFast
Expand Down Expand Up @@ -963,4 +963,4 @@ bool IKFastKinematicsPlugin::getPositionIK(const geometry_msgs::Pose &ik_pose,

//register IKFastKinematicsPlugin as a KinematicsBase implementation
#include <pluginlib/class_list_macros.h>
PLUGINLIB_EXPORT_CLASS(ikfast_kinematics_plugin::IKFastKinematicsPlugin, kinematics::KinematicsBase);
PLUGINLIB_EXPORT_CLASS(nextage_left_arm_ikfast_kinematics_plugin::IKFastKinematicsPlugin, kinematics::KinematicsBase);
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const double LIMIT_TOLERANCE = .0000001;
/// \brief Search modes for searchPositionIK(), see there
enum SEARCH_MODE { OPTIMIZE_FREE_JOINT=1, OPTIMIZE_MAX_JOINT=2 };

namespace ikfast_kinematics_plugin
namespace nextage_right_arm_ikfast_kinematics_plugin
{

#define IKFAST_NO_MAIN // Don't include main() from IKFast
Expand Down Expand Up @@ -963,4 +963,4 @@ bool IKFastKinematicsPlugin::getPositionIK(const geometry_msgs::Pose &ik_pose,

//register IKFastKinematicsPlugin as a KinematicsBase implementation
#include <pluginlib/class_list_macros.h>
PLUGINLIB_EXPORT_CLASS(ikfast_kinematics_plugin::IKFastKinematicsPlugin, kinematics::KinematicsBase);
PLUGINLIB_EXPORT_CLASS(nextage_right_arm_ikfast_kinematics_plugin::IKFastKinematicsPlugin, kinematics::KinematicsBase);

0 comments on commit 10ef638

Please sign in to comment.