| 433 | //----------------------------------------------------------------------------- |
| 434 | |
| 435 | bool mProjectWorldToScreen( const Point3F &in, |
| 436 | Point3F *out, |
| 437 | const RectI &view, |
| 438 | const MatrixF &world, |
| 439 | const MatrixF &projection ) |
| 440 | { |
| 441 | MatrixF worldProjection = projection; |
| 442 | worldProjection.mul(world); |
| 443 | |
| 444 | return mProjectWorldToScreen( in, out, view, worldProjection ); |
| 445 | } |
| 446 | |
| 447 | //----------------------------------------------------------------------------- |
| 448 |
no test coverage detected