----------------------------------------------------------------------------- Draw Line -----------------------------------------------------------------------------
| 611 | // Draw Line |
| 612 | //----------------------------------------------------------------------------- |
| 613 | void GFXDrawUtil::drawLine( const Point3F &startPt, const Point3F &endPt, const ColorI &color ) |
| 614 | { |
| 615 | drawLine( startPt.x, startPt.y, startPt.z, endPt.x, endPt.y, endPt.z, color ); |
| 616 | } |
| 617 | |
| 618 | void GFXDrawUtil::drawLine( const Point2F &startPt, const Point2F &endPt, const ColorI &color ) |
| 619 | { |
no test coverage detected