------------------------------------------------------------------------
| 860 | |
| 861 | //------------------------------------------------------------------------ |
| 862 | void Agg2D::curve(double x1, double y1, double x2, double y2, double x3, double y3) |
| 863 | { |
| 864 | m_path.remove_all(); |
| 865 | m_path.move_to(x1, y1); |
| 866 | m_path.curve3(x2, y2, x3, y3); |
| 867 | drawPath(StrokeOnly); |
| 868 | } |
| 869 | |
| 870 | |
| 871 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected