| 1429 | bool CPHElement::get_ApplyByGravity() { return (!!dBodyGetGravityMode(m_body)); } |
| 1430 | |
| 1431 | void CPHElement::Fix() |
| 1432 | { |
| 1433 | if (isFixed()) |
| 1434 | return; |
| 1435 | |
| 1436 | dBodySetNoUpdatePosMode(m_body, 1); |
| 1437 | m_flags.set(flFixed, TRUE); |
| 1438 | FixBody(m_body); |
| 1439 | } |
| 1440 | void CPHElement::ReleaseFixed() |
| 1441 | { |
| 1442 | if (!isFixed()) |
no test coverage detected