| 1053 | //------------------------------------------------------------------------ |
| 1054 | template <class VC> |
| 1055 | void path_base<VC>::curve3( |
| 1056 | double x_ctrl, double y_ctrl, double x_to, double y_to) |
| 1057 | { |
| 1058 | m_vertices.add_vertex(x_ctrl, y_ctrl, path_cmd_curve3); |
| 1059 | m_vertices.add_vertex(x_to, y_to, path_cmd_curve3); |
| 1060 | } |
| 1061 | |
| 1062 | //------------------------------------------------------------------------ |
| 1063 | template <class VC> |
no test coverage detected