| 86 | } // anonymous namespace |
| 87 | |
| 88 | void NvFlexExtMovingFrameInit(NvFlexExtMovingFrame* frame, const float* worldTranslation, const float* worldRotation) |
| 89 | { |
| 90 | ((MovingFrame&)(*frame)) = MovingFrame(Vec3(worldTranslation), Quat(worldRotation)); |
| 91 | } |
| 92 | |
| 93 | void NvFlexExtMovingFrameUpdate(NvFlexExtMovingFrame* frame, const float* worldTranslation, const float* worldRotation, float dt) |
| 94 | { |
no test coverage detected