| 733 | //-------------------------------------------------------------------- |
| 734 | template <class VertexSource> |
| 735 | void concat_path(VertexSource& vs, unsigned path_id = 0) |
| 736 | { |
| 737 | double x, y; |
| 738 | unsigned cmd; |
| 739 | vs.rewind(path_id); |
| 740 | while (!is_stop(cmd = vs.vertex(&x, &y))) |
| 741 | { |
| 742 | m_vertices.add_vertex(x, y, cmd); |
| 743 | } |
| 744 | } |
| 745 | |
| 746 | //-------------------------------------------------------------------- |
| 747 | // Join path. The path is joined with the existing one, that is, |
no test coverage detected