| 2481 | } |
| 2482 | |
| 2483 | PxU32 NpScene::getMaxNbContactDataBlocksUsed() const |
| 2484 | { |
| 2485 | PX_CHECK_AND_RETURN_VAL((getSimulationStage() == Sc::SimulationStage::eCOMPLETE), |
| 2486 | "PxScene::getMaxNbContactDataBlocksUsed: This call is not allowed while the simulation is running. Returning 0.", 0); |
| 2487 | |
| 2488 | return mScene.getScScene().getMaxNbContactDataBlocksUsed(); |
| 2489 | } |
| 2490 | |
| 2491 | PxU32 NpScene::getTimestamp() const |
| 2492 | { |
no outgoing calls
no test coverage detected