------------------------------------------------------------------------
| 137 | |
| 138 | //------------------------------------------------------------------------ |
| 139 | void path_renderer::curve4(double x1, double y1, // C, c |
| 140 | double x2, double y2, |
| 141 | double x, double y, bool rel) |
| 142 | { |
| 143 | if(rel) |
| 144 | { |
| 145 | m_storage.rel_to_abs(&x1, &y1); |
| 146 | m_storage.rel_to_abs(&x2, &y2); |
| 147 | m_storage.rel_to_abs(&x, &y); |
| 148 | } |
| 149 | m_storage.curve4(x1, y1, x2, y2, x, y); |
| 150 | } |
| 151 | |
| 152 | //------------------------------------------------------------------------ |
| 153 | void path_renderer::curve4(double x2, double y2, // S, s |
no test coverage detected