| 190 | } |
| 191 | |
| 192 | void BodySim::updateCached(Cm::BitMapPinned* shapeChangedMap) |
| 193 | { |
| 194 | if(!(mLLBody.mInternalFlags & PxsRigidBody::eFROZEN)) |
| 195 | { |
| 196 | ElementSim* current = getElements_(); |
| 197 | while(current) |
| 198 | { |
| 199 | static_cast<ShapeSim*>(current)->updateCached(0, shapeChangedMap); |
| 200 | current = current->mNextInActor; |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | void BodySim::updateCached(PxsTransformCache& transformCache, Bp::BoundsArray& boundsArray) |
| 206 | { |
no outgoing calls
no test coverage detected