// Copyright (c) 1999 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL: https://github.com/CGAL/cgal/blob/v5.1/Triangulation_3/include/CGAL/Triangulation_geom_traits_3.h $ // $Id: Triangulation_geom_traits_3.h 254d60f 2019-10-19T15:23:19+02:00 Sébastien Loriot // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Andreas Fabri // Monique Teillaud // geometric traits for a <=3 D triangulation // OBSOLETE !!!!!!!!!!!!!!!!! #ifndef CGAL_TRIANGULATION_GEOM_TRAITS_3_H #define CGAL_TRIANGULATION_GEOM_TRAITS_3_H #include #include #include namespace CGAL { template < class Repres > class Triangulation_geom_traits_3 : public Repres { public: Triangulation_geom_traits_3() { bool The_class_Triangulation_geom_traits_3_is_obsolete; } typedef Repres Rep; typedef typename Rep::Object_3 Object_3; typedef typename Rep::Point_3 Point_3; typedef typename Rep::Segment_3 Segment_3; typedef typename Rep::Triangle_3 Triangle_3; typedef typename Rep::Tetrahedron_3 Tetrahedron_3; typedef typename Rep::Ray_3 Ray_3; typedef typename Rep::Line_3 Line_3; typedef typename Rep::Plane_3 Plane_3; // The next typedef is there for backward compatibility // Some users take their point type from the traits class. // Before this type was Point typedef Point_3 Point; typedef typename Rep::Compare_x_3 Compare_x_3; typedef typename Rep::Compare_y_3 Compare_y_3; typedef typename Rep::Compare_z_3 Compare_z_3; typedef typename Rep::Equal_3 Equal_3; typedef typename Rep::Orientation_3 Orientation_3; typedef typename Rep::Coplanar_orientation_3 Coplanar_orientation_3; typedef typename Rep::Side_of_oriented_sphere_3 Side_of_oriented_sphere_3; typedef typename Rep::Coplanar_side_of_bounded_circle_3 Coplanar_side_of_bounded_circle_3; typedef typename Rep::Construct_segment_3 Construct_segment_3; typedef typename Rep::Construct_triangle_3 Construct_triangle_3; typedef typename Rep::Construct_tetrahedron_3 Construct_tetrahedron_3; typedef typename Rep::Construct_object_3 Construct_object_3; // For the hierarchy : typedef typename Rep::Compare_distance_3 Compare_distance_3; }; } //namespace CGAL #endif // CGAL_TRIANGULATION_GEOM_TRAITS_3_H