5 #include <boost/geometry/algorithms/centroid.hpp>
6 #include <boost/geometry/algorithms/detail/envelope/interface.hpp>
7 #include <boost/geometry/algorithms/detail/within/interface.hpp>
8 #include <boost/geometry/geometries/box.hpp>
17 Room::isInside(
const Eigen::Vector3f& point,
const bool restrictTo2dCheck)
const
22 const bool isInsideXY = boost::geometry::within(pt, poly);
24 if (restrictTo2dCheck)
30 return isInsideXY and isInsideZ;
39 boost::geometry::centroid(poly,
center);
44 std::tuple<Eigen::Vector2f, Eigen::Vector2f>
48 boost::geometry::model::box<util::geometry::point_type> box;
50 boost::geometry::envelope(poly, box);
62 return boost::geometry::within(pt, poly);