------------------------------------------------------------------------
| 72 | |
| 73 | //------------------------------------------------------------------------ |
| 74 | void path_renderer::move_to(double x, double y, bool rel) // M, m |
| 75 | { |
| 76 | if(rel) m_storage.rel_to_abs(&x, &y); |
| 77 | m_storage.move_to(x, y); |
| 78 | } |
| 79 | |
| 80 | //------------------------------------------------------------------------ |
| 81 | void path_renderer::line_to(double x, double y, bool rel) // L, l |
nothing calls this directly
no test coverage detected