0

我想从 CGAL::Parabola_segment_2 类派生。因为我想访问两个无法通过公共成员函数访问的受保护数据成员。

typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel;
typedef CGAL::Segment_Delaunay_graph_traits_without_intersections_2< Kernel,
    CGAL::Integral_domain_without_division_tag> Gt;
typedef CGAL::Segment_Delaunay_graph_2<Gt> SDG_2;
typedef SDG_2::Vertex_handle Vertex_handle;
typedef SDG_2::Finite_edges_iterator Finite_edges_iterator;
typedef Gt::Line_2 Line_2;
typedef Gt::Ray_2 Ray_2;
typedef Gt::Segment_2 Segment_2;
typedef Gt::Point_2 Point_2;
typedef Gt::Site_2 Site_2;

class Parabola_segment_2 : public CGAL::Parabola_segment_2<Gt> { };

我的代码可以编译并运行,但下面给出的代码中的 if 语句永远不会返回 true。但我确信它必须为某些值返回 true。

.......
CGAL::Object o = sdg.primal(*eit);
Segment_2 s;
Parabola_segment_2 ps;
if(CGAL::assign(s, o)) {
...
}

如果我改变

class Parabola_segment_2 : public CGAL::Parabola_segment_2<Gt> { };

typedef CGAL::Parabola_segment_2<Gt> Parabola_segmet_2;

然后程序完全按照我的意愿执行,但我无法访问我想要的变量。我的问题是我应该如何派生 CGAL 类以使其与 CGAL::assign() 函数兼容?

4

1 回答 1

0

不要使用模板推导,并明确预期的类型。那是:

if( CGAL::assign<CGAL::Parabola_segment_2<Gt> >(ps, o)) {
...
}
于 2013-02-11T06:02:51.483 回答