------------------------------------------------------------------------
| 359 | |
| 360 | //------------------------------------------------------------------------ |
| 361 | void Agg2D::affine(const Affine& tr) |
| 362 | { |
| 363 | m_transform *= tr; |
| 364 | m_convCurve.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 365 | m_convStroke.approximation_scale(worldToScreen(1.0) * g_approxScale); |
| 366 | } |
| 367 | |
| 368 | //------------------------------------------------------------------------ |
| 369 | void Agg2D::affine(const Transformations& tr) |
nothing calls this directly
no test coverage detected