Searched refs:count_x (Results 1 – 2 of 2) sorted by relevance
/third_party/boost/libs/geometry/test/robustness/overlay/areal_areal/ |
D | interior_triangles.cpp | 28 inline void make_polygon(Polygon& polygon, int count_x, int count_y, int index, int offset) in make_polygon() argument 33 bg::exterior_ring(polygon).push_back(point_type(count_x * 10 + 10, count_y * 10)); in make_polygon() 34 bg::exterior_ring(polygon).push_back(point_type(count_x * 10 + 10, 0)); in make_polygon() 37 for(int j = 0; j < count_x; ++j) in make_polygon() 54 void test_star_comb(int count_x, int count_y, int offset, p_q_settings const& settings) in test_star_comb() argument 58 make_polygon(p, count_x, count_y, 0, 0); in test_star_comb() 59 make_polygon(q, count_x, count_y, 1, offset); in test_star_comb() 72 void test_all(int count, int count_x, int count_y, int offset, p_q_settings const& settings) in test_all() argument 84 test_star_comb<polygon>(count_x, count_y, offset, settings); in test_all() 101 int count_x = 10; in main() local [all …]
|
D | intersects.cpp | 29 inline void make_polygon(MultiPolygon& mp, int count_x, int count_y, int index, int width_x) in make_polygon() argument 33 for(int j = 0; j < count_x; ++j) in make_polygon() 49 void test_intersects(int count_x, int count_y, int width_x, p_q_settings const& settings) in test_intersects() argument 53 make_polygon(mp, count_x, count_y, 0, width_x); in test_intersects() 80 void test_all(int count, int count_x, int count_y, int width_x, p_q_settings const& settings) in test_all() argument 96 test_intersects<multi_polygon>(count_x, count_y, width_x, settings); in test_all() 113 int count_x = 10; in main() local 122 … ("count_x", po::value<int>(&count_x)->default_value(10), "Triangle count in x-direction") in main() 143 test_all<double, false, false>(count, count_x, count_y, width_x, settings); in main() 147 test_all<double, false, true>(count, count_x, count_y, width_x, settings); in main() [all …]
|