| 997 | //------------------------------------------------------------------------ |
| 998 | template<class VC> |
| 999 | void path_base<VC>::curve3(double x_ctrl, double y_ctrl, |
| 1000 | double x_to, double y_to) |
| 1001 | { |
| 1002 | m_vertices.add_vertex(x_ctrl, y_ctrl, path_cmd_curve3); |
| 1003 | m_vertices.add_vertex(x_to, y_to, path_cmd_curve3); |
| 1004 | } |
| 1005 | |
| 1006 | //------------------------------------------------------------------------ |
| 1007 | template<class VC> |
nothing calls this directly
no test coverage detected