Public Member Functions | List of all members
sdf::v11::Joint Class Reference

#include <Joint.hh>

Public Member Functions

 Joint ()
 Default constructor. More...
 
const JointAxisAxis (const unsigned int _index=0) const
 Get a joint axis. More...
 
const std::string & ChildLinkName () const
 Get the name of this joint's child link. More...
 
sdf::ElementPtr Element () const
 Get a pointer to the SDF element that was used during load. More...
 
Errors Load (ElementPtr _sdf)
 Load the joint based on a element pointer. More...
 
const std::string & Name () const
 Get the name of the joint. More...
 
const std::string & ParentLinkName () const
 Get the name of this joint's parent link. More...
 
const std::string & PoseRelativeTo () const
 Get the name of the coordinate frame relative to which this object's pose is expressed. More...
 
const ignition::math::Pose3d & RawPose () const
 Get the pose of the joint. More...
 
Errors ResolveChildLink (std::string &_link) const
 Resolve the name of the child link from the FrameAttachedToGraph. More...
 
Errors ResolveParentLink (std::string &_link) const
 Resolve the name of the parent link from the FrameAttachedToGraph. More...
 
sdf::SemanticPose SemanticPose () const
 Get SemanticPose object of this object to aid in resolving poses. More...
 
const SensorSensorByIndex (const uint64_t _index) const
 Get a sensor based on an index. More...
 
const SensorSensorByName (const std::string &_name) const
 Get a sensor based on a name. More...
 
uint64_t SensorCount () const
 Get the number of sensors. More...
 
bool SensorNameExists (const std::string &_name) const
 Get whether a sensor name exists. More...
 
void SetAxis (const unsigned int _index, const JointAxis &_axis)
 Set a joint axis. More...
 
void SetChildLinkName (const std::string &_name)
 Set the name of the child link. More...
 
void SetName (const std::string &_name)
 Set the name of the joint. More...
 
void SetParentLinkName (const std::string &_name)
 Set the name of the parent link. More...
 
void SetPoseRelativeTo (const std::string &_frame)
 Set the name of the coordinate frame relative to which this object's pose is expressed. More...
 
void SetRawPose (const ignition::math::Pose3d &_pose)
 Set the pose of the joint. More...
 
void SetThreadPitch (double _threadPitch)
 Set the thread pitch (only valid for screw joints) More...
 
void SetType (const JointType _jointType)
 Set the joint type. More...
 
double ThreadPitch () const
 Get the thread pitch (only valid for screw joints) More...
 
JointType Type () const
 Get the joint type. More...
 

Constructor & Destructor Documentation

◆ Joint()

sdf::v11::Joint::Joint ( )

Default constructor.

Member Function Documentation

◆ Axis()

const JointAxis* sdf::v11::Joint::Axis ( const unsigned int  _index = 0) const

Get a joint axis.

Parameters
[in]_indexThis value specifies which axis to get. A value of zero corresponds to the first axis, which is the <axis> SDF element. Any other value will return the second axis, which is the <axis2> SDF element.
Returns
A JointAxis for either the first or second joint axis. A return value of nullptr indicates that the axis is not specified.

◆ ChildLinkName()

const std::string& sdf::v11::Joint::ChildLinkName ( ) const

Get the name of this joint's child link.

Returns
The name of the child link.

◆ Element()

sdf::ElementPtr sdf::v11::Joint::Element ( ) const

Get a pointer to the SDF element that was used during load.

Returns
SDF element pointer. The value will be nullptr if Load has not been called.

◆ Load()

Errors sdf::v11::Joint::Load ( ElementPtr  _sdf)

Load the joint based on a element pointer.

This is not the usual entry point. Typical usage of the SDF DOM is through the Root object.

Parameters
[in]_sdfThe SDF Element pointer
Returns
Errors, which is a vector of Error objects. Each Error includes an error code and message. An empty vector indicates no error.

◆ Name()

const std::string& sdf::v11::Joint::Name ( ) const

Get the name of the joint.

The name of the joint must be unique within the scope of a Model.

Returns
Name of the joint.

◆ ParentLinkName()

const std::string& sdf::v11::Joint::ParentLinkName ( ) const

Get the name of this joint's parent link.

Returns
The name of the parent link.

◆ PoseRelativeTo()

const std::string& sdf::v11::Joint::PoseRelativeTo ( ) const

Get the name of the coordinate frame relative to which this object's pose is expressed.

An empty value indicates that the frame is relative to the child link frame.

Returns
The name of the pose relative-to frame.

◆ RawPose()

const ignition::math::Pose3d& sdf::v11::Joint::RawPose ( ) const

Get the pose of the joint.

This is the pose of the joint as specified in SDF (<joint> <pose> ... </pose></joint>). Transformations have not been applied to the return value.

Returns
The pose of the joint. This is the raw pose value, as set in the SDF file.

◆ ResolveChildLink()

Errors sdf::v11::Joint::ResolveChildLink ( std::string &  _link) const

Resolve the name of the child link from the FrameAttachedToGraph.

Parameters
[out]_bodyName of child link of this joint.
Returns
Errors.

◆ ResolveParentLink()

Errors sdf::v11::Joint::ResolveParentLink ( std::string &  _link) const

Resolve the name of the parent link from the FrameAttachedToGraph.

It will return the name of a link or "world".

Parameters
[out]_bodyName of parent link of this joint.
Returns
Errors.

◆ SemanticPose()

sdf::SemanticPose sdf::v11::Joint::SemanticPose ( ) const

Get SemanticPose object of this object to aid in resolving poses.

Returns
SemanticPose object for this link.

◆ SensorByIndex()

const Sensor* sdf::v11::Joint::SensorByIndex ( const uint64_t  _index) const

Get a sensor based on an index.

Parameters
[in]_indexIndex of the sensor. The index should be in the range [0..SensorCount()).
Returns
Pointer to the sensor. Nullptr if the index does not exist.
See also
uint64_t SensorCount() const

◆ SensorByName()

const Sensor* sdf::v11::Joint::SensorByName ( const std::string &  _name) const

Get a sensor based on a name.

Parameters
[in]_nameName of the sensor.
Returns
Pointer to the sensor. Nullptr if a sensor with the given name does not exist.
See also
bool SensorNameExists(const std::string &_name) const

◆ SensorCount()

uint64_t sdf::v11::Joint::SensorCount ( ) const

Get the number of sensors.

Returns
Number of sensors contained in this Joint object.

◆ SensorNameExists()

bool sdf::v11::Joint::SensorNameExists ( const std::string &  _name) const

Get whether a sensor name exists.

Parameters
[in]_nameName of the sensor to check.
Returns
True if there exists a sensor with the given name.

◆ SetAxis()

void sdf::v11::Joint::SetAxis ( const unsigned int  _index,
const JointAxis _axis 
)

Set a joint axis.

Parameters
[in]_indexThis value specifies which axis to set. A value of zero corresponds to the first axis, which is the <axis> SDF element. Any other value will set the second axis, which is the <axis2> SDF element.
[in]_axisThe JointAxis of the joint

◆ SetChildLinkName()

void sdf::v11::Joint::SetChildLinkName ( const std::string &  _name)

Set the name of the child link.

Parameters
[in]_nameName of the child link.

◆ SetName()

void sdf::v11::Joint::SetName ( const std::string &  _name)

Set the name of the joint.

The name of the joint must be unique within the scope of a Model.

Parameters
[in]_nameName of the joint.

◆ SetParentLinkName()

void sdf::v11::Joint::SetParentLinkName ( const std::string &  _name)

Set the name of the parent link.

Parameters
[in]_nameName of the parent link.

◆ SetPoseRelativeTo()

void sdf::v11::Joint::SetPoseRelativeTo ( const std::string &  _frame)

Set the name of the coordinate frame relative to which this object's pose is expressed.

An empty value indicates that the frame is relative to the child link frame.

Parameters
[in]_frameThe name of the pose relative-to frame.

◆ SetRawPose()

void sdf::v11::Joint::SetRawPose ( const ignition::math::Pose3d &  _pose)

Set the pose of the joint.

See also
const ignition::math::Pose3d &RawPose() const;
Parameters
[in]_poseThe pose of the joint.

◆ SetThreadPitch()

void sdf::v11::Joint::SetThreadPitch ( double  _threadPitch)

Set the thread pitch (only valid for screw joints)

Parameters
[in]_threadPitchThe thread pitch of the joint

◆ SetType()

void sdf::v11::Joint::SetType ( const JointType  _jointType)

Set the joint type.

Parameters
[in]_jointTypeThe type of joint.

◆ ThreadPitch()

double sdf::v11::Joint::ThreadPitch ( ) const

Get the thread pitch (only valid for screw joints)

Returns
The thread pitch

◆ Type()

JointType sdf::v11::Joint::Type ( ) const

Get the joint type.

Returns
Type of joint.

The documentation for this class was generated from the following file: