| 122 | } |
| 123 | |
| 124 | void SampleLargeWorld::setCCDActive(PxShape& shape) |
| 125 | { |
| 126 | PxFilterData fd = shape.getSimulationFilterData(); |
| 127 | fd.word3 |= CCD_FLAG; |
| 128 | shape.setSimulationFilterData(fd); |
| 129 | } |
| 130 | |
| 131 | bool SampleLargeWorld::isCCDActive(PxFilterData& filterData) |
| 132 | { |
nothing calls this directly
no test coverage detected