| 953 | } |
| 954 | |
| 955 | void BodySim::freezeTransforms(Cm::BitMapPinned* shapeChangedMap) |
| 956 | { |
| 957 | ElementSim* current = getElements_(); |
| 958 | while(current) |
| 959 | { |
| 960 | ShapeSim* sim = static_cast<ShapeSim*>(current); |
| 961 | sim->updateCached(PxsTransformFlag::eFROZEN, shapeChangedMap); |
| 962 | sim->destroySqBounds(); |
| 963 | current = current->mNextInActor; |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | void BodySim::disableCompound() |
| 968 | { |
no test coverage detected