Home
last modified time | relevance | path

Searched refs:multi_linestring (Results 1 – 25 of 128) sorted by relevance

123456

/third_party/boost/libs/geometry/test/algorithms/
Dcentroid_multi.cpp57 test_centroid<bg::model::multi_linestring<bg::model::linestring<P> > >( in test_2d()
62 test_centroid<bg::model::multi_linestring<bg::model::linestring<P> > >( in test_2d()
132 typedef multi_linestring<linestring<P> > multi_linestring; in test_exceptions() typedef
142 test_centroid_exception<multi_linestring>("MULTILINESTRING()"); in test_exceptions()
143 test_centroid_exception<multi_linestring>("MULTILINESTRING(())"); in test_exceptions()
144 test_centroid_exception<multi_linestring>("MULTILINESTRING((), ())"); in test_exceptions()
152 typedef multi_linestring<linestring<P> > multi_linestring; in test_empty() typedef
155 test_centroid<multi_linestring>( in test_empty()
158 test_centroid<multi_linestring>( in test_empty()
Dnum_geometries.cpp38 typedef bg::model::multi_linestring<linestring> multi_linestring; typedef
96 typedef test_num_geometries<multi_linestring> tester; in BOOST_AUTO_TEST_CASE()
132 linestring, multi_linestring in BOOST_AUTO_TEST_CASE()
140 multi_linestring mls; in BOOST_AUTO_TEST_CASE()
Dconvert_multi.cpp23 bg::model::multi_linestring<bg::model::linestring<Point1> >, in test_mixed_point_types()
24 bg::model::multi_linestring<bg::model::linestring<Point2> > in test_mixed_point_types()
41 bg::model::multi_linestring<bg::model::linestring<Point2> > in test_mixed_point_types()
51 bg::model::multi_linestring<bg::model::linestring<Point2> > in test_mixed_point_types()
Dnum_points.cpp62 typedef bg::model::multi_linestring<linestring> multi_linestring; in test_main() typedef
81 test_num_points<multi_linestring>("MULTILINESTRING((0 0,1 1),(2 2,3 3,4 4))", 5u); in test_main()
Dnum_interior_rings.cpp38 typedef bg::model::multi_linestring<linestring> multi_linestring; typedef
93 multi_linestring in BOOST_AUTO_TEST_CASE()
/third_party/boost/libs/geometry/test/algorithms/detail/
Dtupled_output.cpp73 typedef bg::model::multi_linestring<linestring> multi_linestring; in test_main() typedef
87 test_range_values<boost::tuple<multi_linestring, multi_point>, in test_main()
91 test_range_values<std::pair<multi_linestring, multi_point>, in test_main()
94 test_back_inserters<boost::tuple<multi_linestring, multi_point>, in test_main()
95 boost::tuples::cons<bgr::back_insert_iterator<multi_linestring>, in test_main()
98 test_back_inserters<std::pair<multi_linestring, multi_point>, in test_main()
99 std::pair<bgr::back_insert_iterator<multi_linestring>, in test_main()
106 test_range_values<std::tuple<multi_linestring, multi_point>, in test_main()
109 test_back_inserters<std::tuple<multi_linestring, multi_point>, in test_main()
110 std::tuple<bgr::back_insert_iterator<multi_linestring>, in test_main()
/third_party/boost/libs/geometry/doc/generated/
Dmulti_linestring.qbk16 [section:model_multi_linestring model::multi_linestring]
18 '''<indexterm><primary>model</primary></indexterm><indexterm><primary>multi_linestring</primary></i…
29 class model::multi_linestring
47 [[``multi_linestring()``
49 ] [Default constructor, creating an empty multi_linestring. ] [
52 [[``multi_linestring(std::initializer_list< LineString > l)``
54 ] [Constructor taking std::initializer_list, filling the multi_linestring. ] [[* std::initializer_l…
69 `#include <boost/geometry/geometries/multi_linestring.hpp>`
71 [include reference/geometries/multi_linestring.qbk]
/third_party/boost/libs/geometry/doc/src/examples/algorithms/
Dis_simple.cpp26 typedef boost::geometry::model::multi_linestring<linestring_type> multi_linestring_type; in main()
28 multi_linestring_type multi_linestring; in main() local
29 …::geometry::read_wkt("MULTILINESTRING((0 0,0 10,10 10,10 0,0 0),(10 10,20 20))", multi_linestring); in main()
32 << (boost::geometry::is_simple(multi_linestring) ? "yes" : "no") in main()
34 /*<-*/ create_svg("is_simple_example.svg", multi_linestring); /*->*/ in main()
/third_party/boost/boost/geometry/geometries/
Dmulti_linestring.hpp56 class multi_linestring : public Container<LineString, Allocator<LineString> > class
69 multi_linestring() in multi_linestring() function in boost::geometry::model::multi_linestring
74 inline multi_linestring(std::initializer_list<LineString> l) in multi_linestring() function in boost::geometry::model::multi_linestring
108 struct tag< model::multi_linestring<LineString, Container, Allocator> >
/third_party/boost/libs/geometry/test/geometries/
Dmulti_linestring.cpp45 bg::model::multi_linestring<L> create_multi_linestring() in create_multi_linestring()
47 bg::model::multi_linestring<L> ml1; in create_multi_linestring()
70 bg::model::multi_linestring<L> ml1(create_multi_linestring<P, L>()); in test_default_constructor()
77 bg::model::multi_linestring<L> ml1 = create_multi_linestring<P, L>(); in test_copy_constructor()
84 bg::model::multi_linestring<L> ml1(create_multi_linestring<P, L>()), ml2; in test_copy_assignment()
92 typedef bg::model::multi_linestring<L> ML; in test_concept()
119 bg::model::multi_linestring<L> ml1(LIL); in test_custom_multi_linestring()
/third_party/boost/libs/geometry/test/algorithms/set_operations/difference/
Ddifference_multi_areal_linear.cpp69 typedef bg::model::multi_linestring<linestring> multi_linestring; in test_all() typedef
70 test_areal_linear<multi_polygon, multi_linestring>(); in test_all()
/third_party/boost/libs/geometry/test/cs_undefined/
Dcommon.hpp30 typedef bg::model::multi_linestring<linestring> multi_linestring; typedef
64 multi_linestring mls;
/third_party/boost/libs/geometry/test/algorithms/length/
Dlength_multi.cpp17 test_geometry<bg::model::multi_linestring<bg::model::linestring<P> > > in test_all()
24 test_empty_input(bg::model::multi_linestring<P>()); in test_empty_input()
/third_party/boost/libs/geometry/test/algorithms/crosses/
Dcrosses.cpp21 typedef bg::model::multi_linestring<ls> mls; in test_pl()
50 typedef bg::model::multi_linestring<ls> mls; in test_ll()
69 typedef bg::model::multi_linestring<ls> mls; in test_la()
/third_party/boost/libs/geometry/test/algorithms/touches/
Dtouches_sph.cpp139 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
159 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_polygon()
189 typedef bg::model::multi_linestring<ls> mls; in test_linestring_multi_linestring()
204 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_linestring()
/third_party/boost/libs/geometry/test/algorithms/intersects/
Dintersects.cpp63 typedef bg::model::multi_linestring<ls> mls; in test_intersects_linestring_polygon()
91 typedef bg::model::multi_linestring<ls> mls; in test_intersects_linestring_ring()
119 typedef bg::model::multi_linestring<ls> mls; in test_intersects_point_linestring()
143 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
Dintersects_sph.cpp143 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
163 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_polygon()
193 typedef bg::model::multi_linestring<ls> mls; in test_linestring_multi_linestring()
208 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_linestring()
/third_party/boost/libs/geometry/test/algorithms/within/
Dwithin_sph.cpp145 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
167 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_polygon()
197 typedef bg::model::multi_linestring<ls> mls; in test_linestring_multi_linestring()
212 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_linestring()
/third_party/boost/libs/geometry/test/algorithms/similarity/
Ddiscrete_hausdorff_distance.cpp30 typedef bg::model::multi_linestring<linestring_2d> mlinestring_t; in test_all_cartesian()
55 typedef bg::model::multi_linestring<linestring_2d> mlinestring_t; in test_all_geographic()
81 typedef bg::model::multi_linestring<linestring_2d> mlinestring_t; in test_all_spherical_equ()
/third_party/boost/libs/geometry/test/algorithms/covered_by/
Dcovered_by_sph.cpp147 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
167 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_polygon()
197 typedef bg::model::multi_linestring<ls> mls; in test_linestring_multi_linestring()
212 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_linestring()
/third_party/boost/libs/geometry/test/algorithms/disjoint/
Ddisjoint_sph.cpp145 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_polygon()
165 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_polygon()
210 typedef bg::model::multi_linestring<ls> mls; in test_linestring_multi_linestring()
225 typedef bg::model::multi_linestring<ls> mls; in test_multi_linestring_multi_linestring()
/third_party/boost/libs/geometry/doc/src/examples/geometries/
DJamfile22 exe multi_linestring : multi_linestring.cpp ;
DJamfile.v221 exe multi_linestring : multi_linestring.cpp ;
/third_party/boost/libs/geometry/doc/src/examples/geometries/register/
DJamfile.v229 exe multi_linestring : multi_linestring.cpp ;
DJamfile29 exe multi_linestring : multi_linestring.cpp ;

123456