------------------------------------------------------------------------
| 374 | |
| 375 | //------------------------------------------------------------------------ |
| 376 | void Agg2D::scale(double sx, double sy) |
| 377 | { |
| 378 | m_transform *= agg::trans_affine_scaling(sx, sy); |
| 379 | m_convCurve.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 380 | m_convStroke.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 381 | } |
| 382 | |
| 383 | |
| 384 | //------------------------------------------------------------------------ |
nothing calls this directly
no test coverage detected