------------------------------------------------------------------------
| 743 | |
| 744 | //------------------------------------------------------------------------ |
| 745 | void Agg2D::triangle(double x1, double y1, double x2, double y2, double x3, double y3) |
| 746 | { |
| 747 | m_path.remove_all(); |
| 748 | m_path.move_to(x1, y1); |
| 749 | m_path.line_to(x2, y2); |
| 750 | m_path.line_to(x3, y3); |
| 751 | m_path.close_polygon(); |
| 752 | drawPath(FillAndStroke); |
| 753 | } |
| 754 | |
| 755 | |
| 756 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected