------------------------------------------------------------------------
| 383 | |
| 384 | //------------------------------------------------------------------------ |
| 385 | void Agg2D::parallelogram(double x1, double y1, double x2, double y2, const double* para) |
| 386 | { |
| 387 | m_transform *= agg::trans_affine(x1, y1, x2, y2, para); |
| 388 | m_convCurve.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 389 | m_convStroke.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 390 | } |
| 391 | |
| 392 | |
| 393 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected