| 1062 | //------------------------------------------------------------------------ |
| 1063 | template <class VC> |
| 1064 | void path_base<VC>::curve3_rel( |
| 1065 | double dx_ctrl, double dy_ctrl, double dx_to, double dy_to) |
| 1066 | { |
| 1067 | rel_to_abs(&dx_ctrl, &dy_ctrl); |
| 1068 | rel_to_abs(&dx_to, &dy_to); |
| 1069 | m_vertices.add_vertex(dx_ctrl, dy_ctrl, path_cmd_curve3); |
| 1070 | m_vertices.add_vertex(dx_to, dy_to, path_cmd_curve3); |
| 1071 | } |
| 1072 | |
| 1073 | //------------------------------------------------------------------------ |
| 1074 | template <class VC> |
no test coverage detected