Constructor
| 45 | |
| 46 | // Constructor |
| 47 | SATAlgorithm::SATAlgorithm(bool clipWithPreviousAxisIfStillColliding, MemoryAllocator& memoryAllocator) |
| 48 | : mClipWithPreviousAxisIfStillColliding(clipWithPreviousAxisIfStillColliding), mMemoryAllocator(memoryAllocator) { |
| 49 | |
| 50 | #ifdef IS_RP3D_PROFILING_ENABLED |
| 51 | |
| 52 | mProfiler = nullptr; |
| 53 | #endif |
| 54 | |
| 55 | } |
| 56 | |
| 57 | // Test collision between a sphere and a convex mesh |
| 58 | bool SATAlgorithm::testCollisionSphereVsConvexPolyhedron(NarrowPhaseInfoBatch& narrowPhaseInfoBatch, uint32 batchStartIndex, uint32 batchNbItems) const { |
nothing calls this directly
no outgoing calls
no test coverage detected