------------------------------------------------------------------------
| 99 | |
| 100 | //------------------------------------------------------------------------ |
| 101 | void path_renderer::vline_to(double y, bool rel) // V, v |
| 102 | { |
| 103 | double x2 = 0.0; |
| 104 | double y2 = 0.0; |
| 105 | if(m_storage.total_vertices()) |
| 106 | { |
| 107 | m_storage.vertex(m_storage.total_vertices() - 1, &x2, &y2); |
| 108 | if(rel) y += y2; |
| 109 | m_storage.line_to(x2, y); |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | //------------------------------------------------------------------------ |
| 114 | void path_renderer::curve3(double x1, double y1, // Q, q |
nothing calls this directly
no test coverage detected