-----------------------------------------------------------------------
| 317 | const MeshPtr &Entity::getMesh() const { return mMesh; } |
| 318 | //----------------------------------------------------------------------- |
| 319 | SubEntity *Entity::getSubEntity( size_t index ) |
| 320 | { |
| 321 | if( index >= mSubEntityList.size() ) |
| 322 | OGRE_EXCEPT( Exception::ERR_INVALIDPARAMS, "Index out of bounds.", |
| 323 | "Entity::getSubEntity" ); |
| 324 | return &mSubEntityList[index]; |
| 325 | } |
| 326 | //----------------------------------------------------------------------- |
| 327 | const SubEntity *Entity::getSubEntity( size_t index ) const |
| 328 | { |
no test coverage detected