| 795 | //-------------------------------------------------------------------- |
| 796 | template <class T> |
| 797 | void concat_poly(const T* data, unsigned num_points, bool closed) |
| 798 | { |
| 799 | poly_plain_adaptor<T> poly(data, num_points, closed); |
| 800 | concat_path(poly); |
| 801 | } |
| 802 | |
| 803 | // Join polygon/polyline continuously. |
| 804 | //-------------------------------------------------------------------- |