| 548 | } |
| 549 | |
| 550 | inline void MatrixF::displace( const Point3F &delta ) |
| 551 | { |
| 552 | m[3] += delta.x; |
| 553 | m[3+4] += delta.y; |
| 554 | m[3+8] += delta.z; |
| 555 | } |
| 556 | |
| 557 | inline VectorF MatrixF::getForwardVector() const |
| 558 | { |
no outgoing calls
no test coverage detected