| 472 | } |
| 473 | |
| 474 | void CPHShell::SetGlTransformDynamic(const Fmatrix& form) |
| 475 | { |
| 476 | VERIFY(isActive()); |
| 477 | VERIFY(_valid(form)); |
| 478 | Fmatrix current, replace; |
| 479 | GetGlobalTransformDynamic(¤t); |
| 480 | current.invert(); |
| 481 | replace.mul(form, current); |
| 482 | TransformPosition(replace); |
| 483 | } |
| 484 | void CPHShell::SmoothElementsInertia(float k) |
| 485 | { |
| 486 | dMass m_avrg; |
no test coverage detected