------------------------------------------------------------------------
| 112 | |
| 113 | //------------------------------------------------------------------------ |
| 114 | void path_renderer::curve3(double x1, double y1, // Q, q |
| 115 | double x, double y, bool rel) |
| 116 | { |
| 117 | if(rel) |
| 118 | { |
| 119 | m_storage.rel_to_abs(&x1, &y1); |
| 120 | m_storage.rel_to_abs(&x, &y); |
| 121 | } |
| 122 | m_storage.curve3(x1, y1, x, y); |
| 123 | } |
| 124 | |
| 125 | //------------------------------------------------------------------------ |
| 126 | void path_renderer::curve3(double x, double y, bool rel) // T, t |
no test coverage detected