1 // Copyright (c) 2010 GeometryFactory (France).
2 // All rights reserved.
3 //
4 // This file is part of CGAL (www.cgal.org)
5 //
6 // $URL: https://github.com/CGAL/cgal/blob/v5.3/Intersections_3/include/CGAL/Intersections_3/Sphere_3_Sphere_3.h $
7 // $Id: Sphere_3_Sphere_3.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot
8 // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
9 //
10 //
11 // Author(s)     : Sebastien Loriot
12 //
13 
14 #ifndef CGAL_INTERSECTIONS_3_SPHERE_3_SPHERE_3_H
15 #define CGAL_INTERSECTIONS_3_SPHERE_3_SPHERE_3_H
16 
17 #include <CGAL/Sphere_3.h>
18 
19 #include <CGAL/Intersections_3/internal/intersection_3_1_impl.h>
20 
21 namespace CGAL {
22 CGAL_DO_INTERSECT_FUNCTION_SELF(Sphere_3, 3)
23 CGAL_INTERSECTION_FUNCTION_SELF(Sphere_3, 3)
24 }
25 
26 #endif // CGAL_INTERSECTIONS_3_SPHERE_3_SPHERE_3_H
27