| 420 | //----------------------------------------------------------------------------- |
| 421 | |
| 422 | bool mProjectWorldToScreen( const Point3F &in, |
| 423 | Point3F *out, |
| 424 | const RectI &view, |
| 425 | const MatrixF &world, |
| 426 | const MatrixF &projection ) |
| 427 | { |
| 428 | MatrixF worldProjection = projection; |
| 429 | worldProjection.mul(world); |
| 430 | |
| 431 | return mProjectWorldToScreen( in, out, view, worldProjection ); |
| 432 | } |
| 433 | |
| 434 | //----------------------------------------------------------------------------- |
| 435 |
no test coverage detected