Boost.Geometry多边形点分配

时间:2014-05-31 23:04:08

标签: c++ boost boost-geometry

我正在尝试使用提升几何体,并且无法将点指定给多边形。 让我们假设我创建一个点的静态向量

boost::geometry::model::d2::point_xy<double> >* a; 

然后我创建一个多边形:

boost::geometry::model::polygon<boost::geometry::model::d2::point_xy<double> > polygon;

假设我已经定义了a。点的值。

如何将a中的点分配给P?

1 个答案:

答案 0 :(得分:6)

boost::geometry::assign_points()算法可用于为多边形指定一系列点。

如果a是一系列点,P是多边形,那么可以使用:

boost::geometry::assign_points(P, a);

以下是完整的example,其中展示了assign_points

的用法
#include <iostream>
#include <vector>
#include <boost/assign/std/vector.hpp>
#include <boost/geometry.hpp>
#include <boost/geometry/algorithms/area.hpp>
#include <boost/geometry/algorithms/assign.hpp>
#include <boost/geometry/geometries/point_xy.hpp>
#include <boost/geometry/geometries/polygon.hpp>
#include <boost/geometry/io/dsv/write.hpp>

int main()
{
    using namespace boost::assign;
    typedef boost::geometry::model::d2::point_xy<double> point_xy;

    // Create points to represent a 5x5 closed polygon.
    std::vector<point_xy> points;
    points +=
      point_xy(0,0),
      point_xy(0,5),
      point_xy(5,5),
      point_xy(5,0),
      point_xy(0,0)
      ;

    // Create a polygon object and assign the points to it.
    boost::geometry::model::polygon<point_xy> polygon;  
    boost::geometry::assign_points(polygon, points);

    std::cout << "Polygon " << boost::geometry::dsv(polygon) << 
      " has an area of " << boost::geometry::area(polygon) << std::endl;
}

产生以下输出:

Polygon (((0, 0), (0, 5), (5, 5), (5, 0), (0, 0))) has an area of 25