NTRT Simulator  v1.1
 All Classes Namespaces Files Functions Variables Typedefs Friends Pages
tgBaseRigid Class Reference

#include <tgBaseRigid.h>

Inherits tgModel.

Inherited by tgBox, tgRod, and tgSphere.

Collaboration diagram for tgBaseRigid:

Public Member Functions

virtual ~tgBaseRigid ()
 
virtual void teardown ()
 
virtual void onVisit (const tgModelVisitor &v) const
 
virtual double mass () const
 
virtual btVector3 centerOfMass () const
 
virtual btRigidBody * getPRigidBody ()
 
virtual btVector3 orientation () const
 
virtual void setup (tgWorld &world)
 
virtual void step (double dt)
 
void addChild (tgModel *pChild)
 
virtual std::string toString (std::string prefix="") const
 
template<typename T >
std::vector< T * > find (const tgTagSearch &tagSearch)
 
template<typename T >
std::vector< T * > find (const std::string &tagSearch)
 
std::vector< tgModel * > getDescendants () const
 
const std::vector
< abstractMarker > & 
getMarkers () const
 
void addMarker (abstractMarker a)
 
void addTags (const std::string &space_separated_tags)
 
void addTags (const tgTags &tags)
 
bool hasTag (const std::string tag) const
 
bool hasAllTags (std::string tags)
 
bool hasAnyTags (const std::string tags)
 
bool hasNoTags ()
 
tgTagsgetTags ()
 
const tgTagsgetTags () const
 
void setTags (tgTags tags)
 
std::string getTagStr (std::string delim=" ") const
 

Protected Member Functions

 tgBaseRigid (btRigidBody *pRigidBody, const tgTags &tags)
 

Protected Attributes

btRigidBody * m_pRigidBody
 
const double m_mass
 

Detailed Description

A rod is a rigid body. Length is defined by nodes, radius and density are defined by config.

Definition at line 43 of file tgBaseRigid.h.

Constructor & Destructor Documentation

tgBaseRigid::~tgBaseRigid ( )
virtual

A class with a virtual memeber function requires a virtual destructor.

Definition at line 57 of file tgBaseRigid.cpp.

Member Function Documentation

void tgModel::addChild ( tgModel pChild)
inherited

Add a sub-model to this model. The model takes ownership of the child sub-model and is responsible for deallocating it.

Parameters
[in,out]pChilda pointer to a sub-model
Exceptions
std::invalid_argumentis pChild is NULL, this object, or already a descendant
Todo:
Make sure that every child appears no more than once in the tree.

Definition at line 124 of file tgModel.cpp.

Here is the call graph for this function:

Here is the caller graph for this function:

btVector3 tgBaseRigid::centerOfMass ( ) const
virtual

Return the center of mass of the rod, a vector in 3-space.

Returns
the center of mass of the rod, a vector in 3-space

Definition at line 74 of file tgBaseRigid.cpp.

template<typename T >
std::vector<T*> tgModel::find ( const tgTagSearch tagSearch)
inlineinherited

Get a vector of descendants sorted by type and a tagsearch. Useful for pulling out muscle groups, or similar.

Parameters
[in]tagSearch,atagSearch that contains the desired tags
Returns
a std::vector of pointers to members that match the tag search and typename T

Definition at line 125 of file tgModel.h.

Here is the call graph for this function:

Here is the caller graph for this function:

template<typename T >
std::vector<T*> tgModel::find ( const std::string &  tagSearch)
inlineinherited

Get a vector of descendants sorted by type and a tagsearch. Useful for pulling out muscle groups, or similar.

Parameters
[in]tagSearch,astd::string& that contains the desired tags
Returns
a std::vector of pointers to members that match the tag search and typename T

Definition at line 138 of file tgModel.h.

Here is the call graph for this function:

std::vector< tgModel * > tgModel::getDescendants ( ) const
inherited

Return a std::vector of const pointers to all sub-models.

Todo:
examine whether this should be public, and perhaps create a read only version
Returns
a std::vector of const pointers all sub-models.
Todo:
Unnecessary copying can be avoided by pasing the result collection in the recursive step.

Definition at line 172 of file tgModel.cpp.

Here is the call graph for this function:

virtual btRigidBody* tgBaseRigid::getPRigidBody ( )
inlinevirtual

Getter for rigid body

Definition at line 76 of file tgBaseRigid.h.

virtual double tgBaseRigid::mass ( ) const
inlinevirtual

Return the rod's mass in application-dependent units.

Returns
the rod's mass in application-dependent units

Definition at line 65 of file tgBaseRigid.h.

void tgBaseRigid::onVisit ( const tgModelVisitor v) const
virtual

Double dispatch funciton. Will pass itself and any children back to the tgModelVisitor

Reimplemented from tgModel.

Reimplemented in tgSphere, tgBox, and tgRod.

Definition at line 59 of file tgBaseRigid.cpp.

Here is the call graph for this function:

btVector3 tgBaseRigid::orientation ( ) const
virtual

Return the rod's orientation in Euler angles.

Returns
3-vector of these euler angles

Definition at line 87 of file tgBaseRigid.cpp.

void tgModel::step ( double  dt)
virtualinherited
void tgBaseRigid::teardown ( )
virtual

Sets the btRigidBody to NULL

Reimplemented from tgModel.

Reimplemented in tgSphere, tgBox, and tgRod.

Definition at line 65 of file tgBaseRigid.cpp.

Here is the call graph for this function:

std::string tgModel::toString ( std::string  prefix = "") const
virtualinherited

Returns the tag names of this model and its children

Parameters
[in]prefixa string to append to
Returns
the original string with this model and its children's tags appended

Definition at line 154 of file tgModel.cpp.

Here is the caller graph for this function:

Member Data Documentation

const double tgBaseRigid::m_mass
protected

The rod's mass. The units are application dependent.

Definition at line 105 of file tgBaseRigid.h.

btRigidBody* tgBaseRigid::m_pRigidBody
protected

The Bullet Physics implementation of the rod.

Definition at line 102 of file tgBaseRigid.h.


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