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/Segment_3_Tetrahedron_3.h $
7 // $Id: Segment_3_Tetrahedron_3.h 90d2e03 2020-01-15T13:32:11+01:00 Maxime Gimeno
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_SEGMENT_3_TETRAHEDRON_3_H
15 #define CGAL_INTERSECTIONS_3_SEGMENT_3_TETRAHEDRON_3_H
16 
17 #include <CGAL/Segment_3.h>
18 #include <CGAL/Tetrahedron_3.h>
19 
20 #include <CGAL/Intersections_3/internal/Tetrahedron_3_Bounded_3_do_intersect.h>
21 #include <CGAL/Intersections_3/internal/Tetrahedron_3_Segment_3_intersection.h>
22 
23 namespace CGAL {
24   CGAL_DO_INTERSECT_FUNCTION(Segment_3, Tetrahedron_3, 3)
25   CGAL_INTERSECTION_FUNCTION(Segment_3, Tetrahedron_3, 3)
26 }
27 
28 #endif // CGAL_INTERSECTIONS_3_SEGMENT_3_TETRAHEDRON_3_H
29