mirror of https://github.com/CGAL/cgal
Move code to initializer list
This commit is contained in:
parent
d9dcc9c2ed
commit
710ef72e27
|
|
@ -33,7 +33,10 @@ template <class R_> class Sphere_segment_rep
|
||||||
typedef Sphere_segment_rep<R_> Rep;
|
typedef Sphere_segment_rep<R_> Rep;
|
||||||
friend class Sphere_segment<R_>;
|
friend class Sphere_segment<R_>;
|
||||||
public:
|
public:
|
||||||
Sphere_segment_rep() { ps_ = pt_ = Point(); c_ = Circle(); }
|
|
||||||
|
Sphere_segment_rep() :
|
||||||
|
ps_(), pt_(), c_()
|
||||||
|
{}
|
||||||
|
|
||||||
Sphere_segment_rep(const Point& p1, const Point& p2,
|
Sphere_segment_rep(const Point& p1, const Point& p2,
|
||||||
bool shorter_arc=true) :
|
bool shorter_arc=true) :
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue