| 1006 | //------------------------------------------------------------------------ |
| 1007 | template<class VC> |
| 1008 | void path_base<VC>::curve3_rel(double dx_ctrl, double dy_ctrl, |
| 1009 | double dx_to, double dy_to) |
| 1010 | { |
| 1011 | rel_to_abs(&dx_ctrl, &dy_ctrl); |
| 1012 | rel_to_abs(&dx_to, &dy_to); |
| 1013 | m_vertices.add_vertex(dx_ctrl, dy_ctrl, path_cmd_curve3); |
| 1014 | m_vertices.add_vertex(dx_to, dy_to, path_cmd_curve3); |
| 1015 | } |
| 1016 | |
| 1017 | //------------------------------------------------------------------------ |
| 1018 | template<class VC> |
no test coverage detected