------------------------------------------------------------------------
| 827 | |
| 828 | //------------------------------------------------------------------------ |
| 829 | void Agg2D::arc(double cx, double cy, double rx, double ry, double start, double sweep) |
| 830 | { |
| 831 | m_path.remove_all(); |
| 832 | agg::bezier_arc arc(cx, cy, rx, ry, start, sweep); |
| 833 | //m_path.add_path(arc, 0, false); |
| 834 | m_path.concat_path(arc,0); // JME |
| 835 | drawPath(StrokeOnly); |
| 836 | } |
| 837 | |
| 838 | |
| 839 | //------------------------------------------------------------------------ |
no test coverage detected