Searched defs:linear_ring (Results 1 – 2 of 2) sorted by relevance
13 struct linear_ring : Cont<point<T>> struct15 using coordinate_type = T;16 using point_type = point<T>;17 using container_type = Cont<point_type>;18 using size_type = typename container_type::size_type;21 linear_ring(Args&&... args) : container_type(std::forward<Args>(args)...) {} in linear_ring() function22 linear_ring(std::initializer_list<point_type> args) in linear_ring() argument
15 using linear_ring = mapbox::geometry::linear_ring<double>; typedef