quadratic split algorithm added, error in linear split corrected

[SVN r71755]
This commit is contained in:
Adam Wulkiewicz
2011-05-06 00:51:49 +00:00
parent 919c6286b8
commit e09f022a2d
7 changed files with 221 additions and 63 deletions

View File

@@ -9,7 +9,7 @@
typedef boost::geometry::model::point<float, 2, boost::geometry::cs::cartesian> P;
typedef boost::geometry::model::box<P> B;
//boost::geometry::index::rtree<B> t(2, 1);
boost::geometry::index::rtree<B> t(4, 2);
boost::geometry::index::rtree<B, boost::geometry::index::default_parameter, boost::geometry::index::quadratic_tag> t(4, 2);
std::vector<B> vect;
void render_scene(void)