1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
// Copyright (c) 1997-2021
// Utrecht University (The Netherlands),
// ETH Zurich (Switzerland),
// INRIA Sophia-Antipolis (France),
// Max-Planck-Institute Saarbruecken (Germany),
// and Tel-Aviv University (Israel).
// GeometryFactory (France)
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/Intersections_3/include/CGAL/Intersections_3/Line_3_Triangle_3.h $
// $Id: include/CGAL/Intersections_3/Line_3_Triangle_3.h b26b07a1242 $
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Sebastien Loriot
//
#ifndef CGAL_INTERSECTIONS_3_LINE_3_TRIANGLE_3_H
#define CGAL_INTERSECTIONS_3_LINE_3_TRIANGLE_3_H
#include <CGAL/Intersection_traits_3.h>
#include <CGAL/Intersections_3/internal/Line_3_Triangle_3_do_intersect.h>
#include <CGAL/Intersections_3/internal/Line_3_Triangle_3_intersection.h>
#include <CGAL/Line_3.h>
#include <CGAL/Triangle_3.h>
namespace CGAL {
CGAL_DO_INTERSECT_FUNCTION(Line_3, Triangle_3, 3)
CGAL_INTERSECTION_FUNCTION(Line_3, Triangle_3, 3)
} // namespace CGAL
#endif // CGAL_INTERSECTIONS_3_LINE_3_TRIANGLE_3_H
|