当我尝试提升几何差异函数时,我得到一个很长的编译器错误,而具有相同接口和可能相关实现的联合和交集工作:
bg::unique_(OldPolygon, Node->Polygon, NodePolygon); // compiles
bg::intersection(OldPolygon, Node->Polygon, NodePolygon); // compiles
bg::difference(OldPolygon, Node->Polygon, NodePolygon); // dies
第一个错误是:
boost/range/size.hpp:32:13: error: invalid operands to
binary expression ('
boost::reverse_iterator<
__gnu_cxx::__normal_iterator<
const GraphPoint *,
std::vector<
GraphPoint,
std::allocator<GraphPoint>
>
>
>' and 'int')
BOOST_ASSERT( (boost::end(rng) - boost::begin(rng)) >= 0 &&
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
似乎由于某种原因,迭代器的区别是返回反向迭代器而不是距离......
类型声明为:
namespace bg = boost::geometry;
struct GraphPoint
{
int x, y;
GraphPoint(int x, int y) : x(x), y(y) { }
GraphPoint() : x(0), y(0) { }
GraphPoint(const GraphPoint &other) : x(other.x), y(other.y) { }
bool operator ==(const GraphPoint &other) const
{
return x == other.x && y == other.y;
}
};
BOOST_GEOMETRY_REGISTER_POINT_2D(GraphPoint, int, bg::cs::cartesian, x, y)
typedef bg::model::polygon<GraphPoint> Polygon;
typedef Polygon::ring_type Ring;
typedef bg::model::multi_polygon<Polygon> MultiPolygon;
MultiPolygon OldPolygon;
struct Node
{
Polygon Polygon;
}
MultiPolygon NodePolygon;
完整的错误在这里,以防有人喜欢挖掘。
我怎样才能使这个编译?