mirror of https://github.com/CGAL/cgal
Comment an assertion that requires an exact kernel
This commit is contained in:
parent
c2d1adfb69
commit
4a301448fe
|
|
@ -66,10 +66,10 @@ public:
|
||||||
{
|
{
|
||||||
// the plane contains the center and it is not degenerate
|
// the plane contains the center and it is not degenerate
|
||||||
CGAL_kernel_assertion(!R().is_degenerate_3_object()(p));
|
CGAL_kernel_assertion(!R().is_degenerate_3_object()(p));
|
||||||
CGAL_kernel_assertion((p.a() * center.x() +
|
// CGAL_kernel_assertion((p.a() * center.x() +
|
||||||
p.b() * center.y() +
|
// p.b() * center.y() +
|
||||||
p.c() * center.z() +
|
// p.c() * center.z() +
|
||||||
p.d()) == 0);
|
// p.d()) == 0);
|
||||||
CGAL_kernel_assertion(squared_r >= FT(0));
|
CGAL_kernel_assertion(squared_r >= FT(0));
|
||||||
base = Rep(Sphere_3(center,squared_r), p);
|
base = Rep(Sphere_3(center,squared_r), p);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue