Esempio n. 1
0
void tgBasicActuator::onVisit(const tgModelVisitor& r) const
{
#ifndef BT_NO_PROFILE 
    BT_PROFILE("tgBasicActuator::onVisit");
#endif //BT_NO_PROFILE	
    r.render(*this);
}
Esempio n. 2
0
void tgRod::onVisit(const tgModelVisitor& v) const
{
    v.render(*this);
    
}
Esempio n. 3
0
void tgBaseRigid::onVisit(const tgModelVisitor& v) const
{
    v.render(*this);
    
}
Esempio n. 4
0
/**
* Call tgModelVisitor::render() on self and all descendants.
* @param[in,out] r a reference to a tgModelVisitor
*/
void hillyMuscleNP::onVisit(const tgModelVisitor& r) const
{
	r.render(*this);
	tgModel::onVisit(r);
}