| 15 | |
| 16 | template<typename V> |
| 17 | Polyline<V>::Polyline( const Contour<V>& contours ) |
| 18 | { |
| 19 | addFromPoints( contours.data(), contours.size() ); |
| 20 | } |
| 21 | |
| 22 | template<typename V> |
| 23 | Polyline<V>::Polyline( const Contours<V>& contours ) |
nothing calls this directly
no test coverage detected