Skip to content

Commit

Permalink
Parabola_segment_2: turn it into a struct
Browse files Browse the repository at this point in the history
  • Loading branch information
afabri committed Jan 11, 2024
1 parent 6df7424 commit f3e547f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Apollonius_graph_2/include/CGAL/Parabola_segment_2.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ namespace Qt {
}

template < class Gt >
class Parabola_segment_2 : public Parabola_2< Gt >
struct Parabola_segment_2 : public Parabola_2< Gt >
{
typedef CGAL::Parabola_2<Gt> Base;
typedef typename Base::Site_2 Site_2;
Expand All @@ -39,10 +39,10 @@ class Parabola_segment_2 : public Parabola_2< Gt >
using Base::t;
using Base::f;

protected:

Point_2 p1, p2;

public:

Parabola_segment_2() : Parabola_2< Gt >() {}

template<class ApolloniusSite>
Expand Down

0 comments on commit f3e547f

Please sign in to comment.