------------------------------------------------------------------------
| 891 | |
| 892 | //------------------------------------------------------------------------ |
| 893 | void Agg2D::polyline(double* xy, int numPoints) |
| 894 | { |
| 895 | m_path.remove_all(); |
| 896 | //m_path.add_poly(xy, numPoints); |
| 897 | m_path.concat_poly(xy,0,true); // JME |
| 898 | drawPath(StrokeOnly); |
| 899 | } |
| 900 | |
| 901 | //------------------------------------------------------------------------ |
| 902 | void Agg2D::textSize(double sizeX, double sizeY) |
nothing calls this directly
no test coverage detected