| 547 | } |
| 548 | |
| 549 | void CPHElement::Disable() |
| 550 | { |
| 551 | // return; |
| 552 | if (!isActive() || !dBodyIsEnabled(m_body)) |
| 553 | return; |
| 554 | FillInterpolation(); |
| 555 | |
| 556 | dBodyDisable(m_body); |
| 557 | } |
| 558 | |
| 559 | void CPHElement::ReEnable() |
| 560 | { |
nothing calls this directly
no test coverage detected