------------------------------------------------------------------------
| 880 | |
| 881 | //------------------------------------------------------------------------ |
| 882 | void Agg2D::polygon(double* xy, int numPoints) |
| 883 | { |
| 884 | m_path.remove_all(); |
| 885 | //m_path.add_poly(xy, numPoints); |
| 886 | m_path.concat_poly(xy,0,true); // JME |
| 887 | closePolygon(); |
| 888 | drawPath(FillAndStroke); |
| 889 | } |
| 890 | |
| 891 | |
| 892 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected