mirror of https://github.com/CGAL/cgal
Fixing Lazy for Circle_3
This commit is contained in:
parent
a77d42ce8e
commit
cdb365613b
|
|
@ -92,6 +92,8 @@ public:
|
|||
}
|
||||
}
|
||||
|
||||
CircleC3(const Plane_3 &p, const Sphere_3 &s, int) : base(s, p) {}
|
||||
|
||||
CircleC3(const Plane_3 &p, const Sphere_3 &s) {
|
||||
Object obj = R().intersect_3_object()(p, s);
|
||||
// s1,s2 must intersect
|
||||
|
|
|
|||
|
|
@ -252,7 +252,7 @@ public:
|
|||
{
|
||||
typedef typename K2::Circle_3 Circle_3;
|
||||
return Circle_3(operator()(a.diametral_sphere()),
|
||||
operator()(a.supporting_plane()));
|
||||
operator()(a.supporting_plane()),1);
|
||||
}
|
||||
|
||||
typename K2::Triangle_3
|
||||
|
|
|
|||
Loading…
Reference in New Issue