Skip to content
Snippets Groups Projects
Verified Commit e4530499 authored by Gabriele Buondonno's avatar Gabriele Buondonno Committed by Justin Carpentier
Browse files

[multibody] Change return type of addJointFrame and addBodyFrame to FrameIndex

parent 10205b21
Branches
Tags
No related merge requests found
......@@ -398,10 +398,10 @@ namespace pinocchio
/// \param[in] frameIndex Index of the parent frame. If negative,
/// the parent frame is the frame of the parent joint.
///
/// \return The index of the new frame or -1 in case of error.
/// \return The index of the new frame
///
int addJointFrame(const JointIndex & joint_index,
int previous_frame_index = -1);
FrameIndex addJointFrame(const JointIndex & joint_index,
int previous_frame_index = -1);
///
/// \brief Append a body to a given joint of the kinematic tree.
......@@ -424,12 +424,12 @@ namespace pinocchio
/// \param[in] previousFrame Index of the parent frame. If negative,
/// the parent frame is the frame of the parent joint.
///
/// \return The index of the new frame or -1 in case of error.
/// \return The index of the new frame
///
int addBodyFrame (const std::string & body_name,
const JointIndex & parentJoint,
const SE3 & body_placement = SE3::Identity(),
int previousFrame = -1);
FrameIndex addBodyFrame(const std::string & body_name,
const JointIndex & parentJoint,
const SE3 & body_placement = SE3::Identity(),
int previousFrame = -1);
///
/// \brief Return the index of a body given by its name.
......
......@@ -146,7 +146,8 @@ namespace pinocchio
}
template<typename Scalar, int Options, template<typename,int> class JointCollectionTpl>
inline int ModelTpl<Scalar,Options,JointCollectionTpl>::
inline typename ModelTpl<Scalar,Options,JointCollectionTpl>::FrameIndex
ModelTpl<Scalar,Options,JointCollectionTpl>::
addJointFrame(const JointIndex & joint_index,
int previous_frame_index)
{
......@@ -176,7 +177,8 @@ namespace pinocchio
}
template<typename Scalar, int Options, template<typename,int> class JointCollectionTpl>
inline int ModelTpl<Scalar,Options,JointCollectionTpl>::
inline typename ModelTpl<Scalar,Options,JointCollectionTpl>::FrameIndex
ModelTpl<Scalar,Options,JointCollectionTpl>::
addBodyFrame(const std::string & body_name,
const JointIndex & parentJoint,
const SE3 & body_placement,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment