GAMS  1.4.0
gams::pose::ReferenceFrame Class Reference

Provides Reference Frame (i.e., coordinate systemm) transforms. More...

#include <ReferenceFrameFwd.h>

Public Member Functions

 ReferenceFrame ()
 Default constructor. More...
 
template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
 ReferenceFrame (const ReferenceFrameType *type, P &&origin, uint64_t timestamp=ETERNAL)
 Constructor from a type, an origin, and optional timestamp. More...
 
template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
 ReferenceFrame (const ReferenceFrameType *type, std::string id, P &&origin, uint64_t timestamp=ETERNAL)
 Constructor from a type, id, an origin, and optional timestamp. More...
 
template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
 ReferenceFrame (P &&origin, uint64_t timestamp=ETERNAL)
 Constructor from an origin, and optional timestamp. More...
 
 ReferenceFrame (std::shared_ptr< ReferenceFrameVersion > impl)
 Construct from an existing ReferenceFrameVersion object. More...
 
template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
 ReferenceFrame (std::string id, P &&origin, uint64_t timestamp=ETERNAL)
 Constructor from a id, an origin, and optional timestamp. More...
 
uint64_t expiry () const
 Return the current expiry for frames of this ID. More...
 
uint64_t expiry (uint64_t age=ETERNAL) const
 Sets configuration for all frames of this frames ID. More...
 
const std::string & id () const
 Get the ID string of this frame. More...
 
ReferenceFrame interpolate (const ReferenceFrame &other, ReferenceFrame parent, uint64_t time) const
 Interpolate a frame between the given frame; use the given parent. More...
 
bool interpolated () const
 Test if frame is interpolated. More...
 
ReferenceFrame move (const Position &new_origin) const
 Creates a new ReferenceFrame with modified origin. More...
 
ReferenceFrame move (const Position &new_origin, uint64_t timestamp) const
 Creates a new ReferenceFrame with modified origin and timestamp. More...
 
std::string name () const
 Returns a human-readable name for the reference frame type. More...
 
bool operator!= (const ReferenceFrame &other) const
 Inequality operator. More...
 
bool operator< (const ReferenceFrame &other) const
 
bool operator<= (const ReferenceFrame &other) const
 
bool operator== (const ReferenceFrame &other) const
 Equality operator. More...
 
bool operator> (const ReferenceFrame &other) const
 
bool operator>= (const ReferenceFrame &other) const
 
ReferenceFrame orient (const Orientation &new_origin) const
 Creates a new ReferenceFrame with modified origin. More...
 
ReferenceFrame orient (const Orientation &new_origin, uint64_t timestamp) const
 Creates a new ReferenceFrame with modified origin and timestamp. More...
 
const Poseorigin () const
 Gets the origin of this Frame. More...
 
ReferenceFrame origin_frame () const
 Gets the parent frame (the one the origin is within). More...
 
ReferenceFrame pose (const Pose &new_origin) const
 Creates a new ReferenceFrame with modified origin. More...
 
ReferenceFrame pose (const Pose &new_origin, uint64_t timestamp) const
 Creates a new ReferenceFrame with modified origin and timestamp. More...
 
void save (madara::knowledge::KnowledgeBase &kb, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT) const
 Save this ReferenceFrame to the knowledge base, The saved frames will be marked with their timestamp for later retrieval. More...
 
void save (madara::knowledge::KnowledgeBase &kb, uint64_t expiry, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT) const
 Save this ReferenceFrame to the knowledge base, The saved frames will be marked with their timestamp for later retrieval. More...
 
void save_as (madara::knowledge::KnowledgeBase &kb, const std::string &key, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT) const
 Save this ReferenceFrame to the knowledge base, with a specific key value. More...
 
void save_as (madara::knowledge::KnowledgeBase &kb, const std::string &key, uint64_t expiry, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT) const
 Save this ReferenceFrame to the knowledge base, with a specific key value. More...
 
bool temp () const
 Returns true if this frame is a temporary; one invented to serve as root of a frame tree. More...
 
uint64_t timestamp () const
 Get the timestamp assigned to this frame. More...
 
ReferenceFrame timestamp (uint64_t) const
 Clone the this frame, but with new timestamp. More...
 
const ReferenceFrameTypetype () const
 Retrieve the frame type object for this frame. More...
 
bool valid () const
 Test whether this frame is valid. More...
 

Static Public Member Functions

static uint64_t default_expiry ()
 Return the default expiry for new frame IDs. More...
 
static uint64_t default_expiry (uint64_t age)
 Set the default expiry value for new frames IDs. More...
 
static const std::string & default_prefix ()
 Return the default prefix for load/save operations. More...
 
static ReferenceFrame load (madara::knowledge::KnowledgeBase &kb, const std::string &id, uint64_t timestamp=ETERNAL, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT)
 Load a single ReferenceFrame, by ID. More...
 
template<typename Container >
static std::vector< ReferenceFrameload_tree (madara::knowledge::KnowledgeBase &kb, const Container &ids, uint64_t timestamp=ETERNAL, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT, ReferenceFrameArena *arena=nullptr)
 Load ReferenceFrames, by ID, and their common ancestors. More...
 
static std::vector< ReferenceFrameload_tree (madara::knowledge::KnowledgeBase &kb, const std::initializer_list< const char * > &ids, uint64_t timestamp=ETERNAL, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT, ReferenceFrameArena *arena=nullptr)
 Load ReferenceFrames, by ID, and their common ancestors. More...
 
template<typename InputIterator >
static std::vector< ReferenceFrameload_tree (madara::knowledge::KnowledgeBase &kb, InputIterator begin, InputIterator end, uint64_t timestamp=ETERNAL, const FrameEvalSettings &settings=FrameEvalSettings::DEFAULT, ReferenceFrameArena *arena=nullptr)
 Load ReferenceFrames, by ID, and their common ancestors. More...
 

Static Public Attributes

static const uint64_t ETERNAL = 0UL - 1
 
static const uint64_t TEMP = 0UL - 2
 

Private Attributes

std::shared_ptr< ReferenceFrameVersionimpl_
 

Friends

GAMS_EXPORT const ReferenceFramefind_common_frame (const ReferenceFrame *from, const ReferenceFrame *to, std::vector< const ReferenceFrame * > *to_stack)
 Helper function to find the common frame between two frames. More...
 
class ReferenceFrameVersion
 

Detailed Description

Provides Reference Frame (i.e., coordinate systemm) transforms.

A ReferenceFrame has:

  • a type: either GPS or Cartesian (the default). Others may be implemented in the future.
  • an ID: some string that should be unique within each knowledge base. By default, a random GUID will be generated if none is given when constructing a ReferenceFrame. The ID should be unique per platform, across all KnowledgeBases that platform might use. The same ID saved to different KnowledgeBase objects will be assumed to represent the same frame, interchangeably.
  • a timestamp: a timestamp representing at what time the transform was measured or derived. No units are assumed by GAMS, but interpolation assumes that timestamps progress linearly with respect to real time, and monotonically. A ETERNAL, the default if none is given, is treated as "always correct" at all times.
  • an origin: a Pose in another frame which is the location and of this frame's origin with respect to that frame.

ReferenceFrame objects are immutable. "Setters" like timestamp() and pose() return a new ReferenceFrame object modified accordingly.

If you use gps_frame() or default_frame(), and wish to save any frames which involve them as ancestors, ensure you save them to any KnowledgeBase you will be saving such frames to.

ReferenceFrames get saved to KnowledgeBases under the ".gams.frames" prefix. Do not modify keys under this prefix directly.

ReferenceFrame objects are ref-counted proxies for an underlying object. As such, they are cheap and safe to pass and return by value.

Definition at line 198 of file ReferenceFrameFwd.h.

Constructor & Destructor Documentation

◆ ReferenceFrame() [1/6]

gams::pose::ReferenceFrame::ReferenceFrame ( )
inline

Default constructor.

This frame's valid() will return false. Calling any other method is undefined behavior.

If a frame has a Pose as origin with an invalid frame, it will be treated as a parent-less frame.

Definition at line 214 of file ReferenceFrameFwd.h.

◆ ReferenceFrame() [2/6]

gams::pose::ReferenceFrame::ReferenceFrame ( std::shared_ptr< ReferenceFrameVersion impl)
inline

Construct from an existing ReferenceFrameVersion object.

In general, you should not be constructing ReferenceFrameVersion objects directly. Use the other constructors of this class.

Parameters
impla shared_ptr to construct with. This object will act as a proxy for the pointed-to object.

Definition at line 224 of file ReferenceFrameFwd.h.

◆ ReferenceFrame() [3/6]

template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
gams::pose::ReferenceFrame::ReferenceFrame ( P &&  origin,
uint64_t  timestamp = ETERNAL 
)
inlineexplicit

Constructor from an origin, and optional timestamp.

Will be constructed with Cartesian type, and a random id.

Template Parameters
Pa Pose or StampedPose
Parameters
originthe origin of this frame, relative to another frame.
timestampthe timestamp of this frame. By default, will be treated as "always most current".

Definition at line 239 of file ReferenceFrameFwd.h.

◆ ReferenceFrame() [4/6]

template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
gams::pose::ReferenceFrame::ReferenceFrame ( const ReferenceFrameType type,
P &&  origin,
uint64_t  timestamp = ETERNAL 
)
inline

Constructor from a type, an origin, and optional timestamp.

Will be constructed with a random id.

Template Parameters
Pa Pose or StampedPose
Parameters
typea pointer to a ReferenceFrameType struct; typically, either Cartesian, or GPS.
originthe origin of this frame, relative to another frame.
timestampthe timestamp of this frame. By default, will be treated as "always most current".

Definition at line 259 of file ReferenceFrameFwd.h.

◆ ReferenceFrame() [5/6]

template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
gams::pose::ReferenceFrame::ReferenceFrame ( std::string  id,
P &&  origin,
uint64_t  timestamp = ETERNAL 
)
inline

Constructor from a id, an origin, and optional timestamp.

Will be constructed with Cartesian type.

Template Parameters
Pa Pose or StampedPose
Parameters
ida string identifier for this frame.
originthe origin of this frame, relative to another frame.
timestampthe timestamp of this frame. By default, will be treated as "always most current".

Definition at line 279 of file ReferenceFrameFwd.h.

◆ ReferenceFrame() [6/6]

template<typename P , typename std::enable_if< supports_transform_to< P >::value, void * >::type = nullptr>
gams::pose::ReferenceFrame::ReferenceFrame ( const ReferenceFrameType type,
std::string  id,
P &&  origin,
uint64_t  timestamp = ETERNAL 
)
inline

Constructor from a type, id, an origin, and optional timestamp.

Template Parameters
Pa Pose or StampedPose
Parameters
typea pointer to a ReferenceFrameType struct; typically, either Cartesian, or GPS.
ida string identifier for this frame.
originthe origin of this frame, relative to another frame.
timestampthe timestamp of this frame. By default, will be treated as "always most current".

Definition at line 300 of file ReferenceFrameFwd.h.

Member Function Documentation

◆ default_expiry() [1/2]

static uint64_t gams::pose::ReferenceFrame::default_expiry ( )
static

Return the default expiry for new frame IDs.

◆ default_expiry() [2/2]

static uint64_t gams::pose::ReferenceFrame::default_expiry ( uint64_t  age)
static

Set the default expiry value for new frames IDs.

Setting this will not change any already created frame IDs.

If a frame newer than its expiry is saved, saved frames expire of the same ID older than this duration into the past from the timestamp of the new frame.

Expired frames are deleted from the KnowledgeBase.

Set to ETERNAL (the default) to never expire frames.

Note: if a timestamp ETERNAL frame is saved and this is not ETERNAL, all other frames will expire immediately.

Returns
previous default expiry

◆ default_prefix()

static const std::string& gams::pose::ReferenceFrame::default_prefix ( )
static

Return the default prefix for load/save operations.

Returns
std::string holding ".gams.frames"

◆ expiry() [1/2]

uint64_t gams::pose::ReferenceFrame::expiry ( ) const

Return the current expiry for frames of this ID.

◆ expiry() [2/2]

uint64_t gams::pose::ReferenceFrame::expiry ( uint64_t  age = ETERNAL) const

Sets configuration for all frames of this frames ID.

If a frame newer than this time is saved, expire saved frames of the same ID older than this duration into the past from the timestamp of the new frame.

Expired frames are deleted from the KnowledgeBase.

Set to ETERNAL (the default) to never expire frames.

Note: if a timestamp ETERNAL frame is saved and this is not ETERNAL, all other frames will expire immediately.

Returns
previous expiry

◆ id()

const std::string& gams::pose::ReferenceFrame::id ( ) const

Get the ID string of this frame.

By default, frames generate a random GUID as their ID

◆ interpolate()

ReferenceFrame gams::pose::ReferenceFrame::interpolate ( const ReferenceFrame other,
ReferenceFrame  parent,
uint64_t  time 
) const

Interpolate a frame between the given frame; use the given parent.

Note: no sanity checking is done. Ensure that parent has a compatible timestamp, and that this and other are the same frame at different times. Users should generally not call this directly. Use load() or load_tree() instead.

Parameters
otherthe other frame to interpolate towards.
parentthe parent the returned frame will have.
timethe timestamp to interpolate at.
Returns
the interpolated frame.

◆ interpolated()

bool gams::pose::ReferenceFrame::interpolated ( ) const

Test if frame is interpolated.

@eturn true if this frame was interpolated from two stored frames, false otherwise

◆ load()

static ReferenceFrame gams::pose::ReferenceFrame::load ( madara::knowledge::KnowledgeBase &  kb,
const std::string &  id,
uint64_t  timestamp = ETERNAL,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT 
)
static

Load a single ReferenceFrame, by ID.

Parameters
idthe ID of the frame to load
timestampif ETERNAL, gets the latest frame (no interpolation) Otherwise, gets the frame at a specified timestamp, interpolated necessary.
Returns
the imported ReferenceFrame, or an invalid frame if none exists.

◆ load_tree() [1/3]

template<typename Container >
static std::vector<ReferenceFrame> gams::pose::ReferenceFrame::load_tree ( madara::knowledge::KnowledgeBase &  kb,
const Container &  ids,
uint64_t  timestamp = ETERNAL,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT,
ReferenceFrameArena arena = nullptr 
)
static

Load ReferenceFrames, by ID, and their common ancestors.

Will interpolate frames to ensure the returned frames all have a common timestamp.

Template Parameters
aContainer, supporting cbegin() and cend(), of item type std::string
Parameters
idsa Container of ids
timestampif ETERNAL, the latest possible tree will be returned. Otherwise, the specified timestamp will be returned.
Returns
a vector of ReferenceFrames, each corresponding to the input IDs, in the same order. If the timestamp specified cannot be satisfied, returns an empty vector.

◆ load_tree() [2/3]

static std::vector<ReferenceFrame> gams::pose::ReferenceFrame::load_tree ( madara::knowledge::KnowledgeBase &  kb,
const std::initializer_list< const char * > &  ids,
uint64_t  timestamp = ETERNAL,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT,
ReferenceFrameArena arena = nullptr 
)
static

Load ReferenceFrames, by ID, and their common ancestors.

Will interpolate frames to ensure the returned frames all have a common timestamp.

Parameters
idsa list of ids
timestampif ETERNAL, the latest possible tree will be returned. Otherwise, the specified timestamp will be returned.
Returns
a vector of ReferenceFrames, each corresponding to the input IDs, in the same order. If the timestamp specified cannot be satisfied, returns an empty vector.

◆ load_tree() [3/3]

template<typename InputIterator >
static std::vector<ReferenceFrame> gams::pose::ReferenceFrame::load_tree ( madara::knowledge::KnowledgeBase &  kb,
InputIterator  begin,
InputIterator  end,
uint64_t  timestamp = ETERNAL,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT,
ReferenceFrameArena arena = nullptr 
)
static

Load ReferenceFrames, by ID, and their common ancestors.

Will interpolate frames to ensure the returned frames all have a common timestamp.

Template Parameters
anInputIterator, of item type std::string
Parameters
beginbeginning iterator
endending iterator
timestampif ETERNAL, the latest possible tree will be returned. Otherwise, the specified timestamp will be returned.
Returns
a vector of ReferenceFrames, each corresponding to the input IDs, in the same order. If the timestamp specified cannot be satisfied, returns an empty vector.

◆ move() [1/2]

ReferenceFrame gams::pose::ReferenceFrame::move ( const Position new_origin) const

Creates a new ReferenceFrame with modified origin.

Parameters
new_originthe new origin
Returns
the new ReferenceFrame with new origin

◆ move() [2/2]

ReferenceFrame gams::pose::ReferenceFrame::move ( const Position new_origin,
uint64_t  timestamp 
) const

Creates a new ReferenceFrame with modified origin and timestamp.

Parameters
new_originthe new origin
timestampthe new timestamp
Returns
the new ReferenceFrame with new origin and timestamp

◆ name()

std::string gams::pose::ReferenceFrame::name ( ) const

Returns a human-readable name for the reference frame type.

Returns
the name reference frame type (e.g., GPS, Cartesian)

◆ operator!=()

bool gams::pose::ReferenceFrame::operator!= ( const ReferenceFrame other) const

Inequality operator.

Parameters
otherthe frame to compare to.
Returns
false if both frames are the same object (i.e., same address). Otherwise, frames are not considered equal (returns true).

◆ operator<()

bool gams::pose::ReferenceFrame::operator< ( const ReferenceFrame other) const
inline

Definition at line 400 of file ReferenceFrameFwd.h.

◆ operator<=()

bool gams::pose::ReferenceFrame::operator<= ( const ReferenceFrame other) const
inline

Definition at line 405 of file ReferenceFrameFwd.h.

◆ operator==()

bool gams::pose::ReferenceFrame::operator== ( const ReferenceFrame other) const

Equality operator.

Parameters
otherthe frame to compare to.
Returns
true if both frames are the same object (i.e., same address). Otherwise, frames are not considered equal (returns false).

◆ operator>()

bool gams::pose::ReferenceFrame::operator> ( const ReferenceFrame other) const
inline

Definition at line 410 of file ReferenceFrameFwd.h.

◆ operator>=()

bool gams::pose::ReferenceFrame::operator>= ( const ReferenceFrame other) const
inline

Definition at line 415 of file ReferenceFrameFwd.h.

◆ orient() [1/2]

ReferenceFrame gams::pose::ReferenceFrame::orient ( const Orientation new_origin) const

Creates a new ReferenceFrame with modified origin.

Parameters
new_originthe new origin
Returns
the new ReferenceFrame with new origin

◆ orient() [2/2]

ReferenceFrame gams::pose::ReferenceFrame::orient ( const Orientation new_origin,
uint64_t  timestamp 
) const

Creates a new ReferenceFrame with modified origin and timestamp.

Parameters
new_originthe new origin
timestampthe new timestamp
Returns
the new ReferenceFrame with new origin and timestamp

◆ origin()

const Pose& gams::pose::ReferenceFrame::origin ( ) const

Gets the origin of this Frame.

Returns
the Pose which is the origin within this frame's parent, or, a Pose within this own frame, with all zeros for coordinates, if this frame has no parent.

◆ origin_frame()

ReferenceFrame gams::pose::ReferenceFrame::origin_frame ( ) const

Gets the parent frame (the one the origin is within).

Will be *this if no parent frame.

◆ pose() [1/2]

ReferenceFrame gams::pose::ReferenceFrame::pose ( const Pose new_origin) const

Creates a new ReferenceFrame with modified origin.

Parameters
new_originthe new origin
Returns
the new ReferenceFrame with new origin

◆ pose() [2/2]

ReferenceFrame gams::pose::ReferenceFrame::pose ( const Pose new_origin,
uint64_t  timestamp 
) const

Creates a new ReferenceFrame with modified origin and timestamp.

Parameters
new_originthe new origin
timestampthe new timestamp
Returns
the new ReferenceFrame with new origin and timestamp

◆ save() [1/2]

void gams::pose::ReferenceFrame::save ( madara::knowledge::KnowledgeBase &  kb,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT 
) const

Save this ReferenceFrame to the knowledge base, The saved frames will be marked with their timestamp for later retrieval.

If timestamp is ETERNAL, it will always be treated as the most recent frame.

Parameters
kbthe KnowledgeBase to store into

◆ save() [2/2]

void gams::pose::ReferenceFrame::save ( madara::knowledge::KnowledgeBase &  kb,
uint64_t  expiry,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT 
) const

Save this ReferenceFrame to the knowledge base, The saved frames will be marked with their timestamp for later retrieval.

If timestamp is ETERNAL, it will always be treated as the most recent frame.

Parameters
kbthe KnowledgeBase to store into
expiryuse this expiry time instead of the one set on this ID

◆ save_as() [1/2]

void gams::pose::ReferenceFrame::save_as ( madara::knowledge::KnowledgeBase &  kb,
const std::string &  key,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT 
) const

Save this ReferenceFrame to the knowledge base, with a specific key value.

Parameters
kbthe KnowledgeBase to save to
keya key prefix to save with

◆ save_as() [2/2]

void gams::pose::ReferenceFrame::save_as ( madara::knowledge::KnowledgeBase &  kb,
const std::string &  key,
uint64_t  expiry,
const FrameEvalSettings settings = FrameEvalSettings::DEFAULT 
) const

Save this ReferenceFrame to the knowledge base, with a specific key value.

Parameters
kbthe KnowledgeBase to save to
keya key prefix to save with
expiryuse this expiry time instead of the one set on this ID

◆ temp()

bool gams::pose::ReferenceFrame::temp ( ) const

Returns true if this frame is a temporary; one invented to serve as root of a frame tree.

◆ timestamp() [1/2]

uint64_t gams::pose::ReferenceFrame::timestamp ( ) const

Get the timestamp assigned to this frame.

Returns
the timestamp

◆ timestamp() [2/2]

ReferenceFrame gams::pose::ReferenceFrame::timestamp ( uint64_t  ) const

Clone the this frame, but with new timestamp.

Returns
the new frame object

◆ type()

const ReferenceFrameType* gams::pose::ReferenceFrame::type ( ) const

Retrieve the frame type object for this frame.

Mostly useful for comparing to the pose::Cartesian or pose::GPS instances to test what kind of frame this is.

Returns
a pointer to this frames ReferenceFrameType

◆ valid()

bool gams::pose::ReferenceFrame::valid ( ) const
inline

Test whether this frame is valid.

If not, all other methods will have undefined behavior.

Returns
true if valid, false otherwise.

Definition at line 314 of file ReferenceFrameFwd.h.

Friends And Related Function Documentation

◆ find_common_frame

GAMS_EXPORT const ReferenceFrame* find_common_frame ( const ReferenceFrame from,
const ReferenceFrame to,
std::vector< const ReferenceFrame * > *  to_stack 
)
friend

Helper function to find the common frame between two frames.

Parameters
fromthe initial frame
tothe target frame
to_stackif not nullptr, the frames needed to go from base to target frame will be pushed to pointed to vector

◆ ReferenceFrameVersion

friend class ReferenceFrameVersion
friend

Definition at line 666 of file ReferenceFrameFwd.h.

Member Data Documentation

◆ ETERNAL

const uint64_t gams::pose::ReferenceFrame::ETERNAL = 0UL - 1
static

Definition at line 204 of file ReferenceFrameFwd.h.

◆ impl_

std::shared_ptr<ReferenceFrameVersion> gams::pose::ReferenceFrame::impl_
private

Definition at line 201 of file ReferenceFrameFwd.h.

◆ TEMP

const uint64_t gams::pose::ReferenceFrame::TEMP = 0UL - 2
static

Definition at line 205 of file ReferenceFrameFwd.h.


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