| 1106 | //------------------------------------------------------------------------ |
| 1107 | template <class VC> |
| 1108 | void path_base<VC>::curve4(double x_ctrl1, |
| 1109 | double y_ctrl1, |
| 1110 | double x_ctrl2, |
| 1111 | double y_ctrl2, |
| 1112 | double x_to, |
| 1113 | double y_to) |
| 1114 | { |
| 1115 | m_vertices.add_vertex(x_ctrl1, y_ctrl1, path_cmd_curve4); |
| 1116 | m_vertices.add_vertex(x_ctrl2, y_ctrl2, path_cmd_curve4); |
| 1117 | m_vertices.add_vertex(x_to, y_to, path_cmd_curve4); |
| 1118 | } |
| 1119 | |
| 1120 | //------------------------------------------------------------------------ |
| 1121 | template <class VC> |
no test coverage detected