| 898 | //------------------------------------------------------------------------ |
| 899 | template <class VC> |
| 900 | unsigned path_base<VC>::start_new_path() |
| 901 | { |
| 902 | if (!is_stop(m_vertices.last_command())) |
| 903 | { |
| 904 | m_vertices.add_vertex(0.0, 0.0, path_cmd_stop); |
| 905 | } |
| 906 | return m_vertices.total_vertices(); |
| 907 | } |
| 908 | |
| 909 | //------------------------------------------------------------------------ |
| 910 | template <class VC> |
nothing calls this directly
no test coverage detected