CGAL::Parabola_segment_2 クラスから派生したいと考えています。public メンバー関数を介してアクセスできない 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::assign() 関数と互換性があるように CGAL クラスをどのように派生させるべきですか?