| 719 | //-------------------------------------------------------------------- |
| 720 | template<class VertexSource> |
| 721 | void concat_path(VertexSource& vs, unsigned path_id = 0) |
| 722 | { |
| 723 | double x, y; |
| 724 | unsigned cmd; |
| 725 | vs.rewind(path_id); |
| 726 | while(!is_stop(cmd = vs.vertex(&x, &y))) |
| 727 | { |
| 728 | m_vertices.add_vertex(x, y, cmd); |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | //-------------------------------------------------------------------- |
| 733 | // Join path. The path is joined with the existing one, that is, |
no test coverage detected