------------------------------------------------------------------------
| 79 | |
| 80 | //------------------------------------------------------------------------ |
| 81 | void path_renderer::line_to(double x, double y, bool rel) // L, l |
| 82 | { |
| 83 | if(rel) m_storage.rel_to_abs(&x, &y); |
| 84 | m_storage.line_to(x, y); |
| 85 | } |
| 86 | |
| 87 | //------------------------------------------------------------------------ |
| 88 | void path_renderer::hline_to(double x, bool rel) // H, h |
no test coverage detected