// Copyright (c) 2014 // INRIA Saclay-Ile de France (France) // // This file is part of CGAL (www.cgal.org) // // $URL: https://github.com/CGAL/cgal/blob/v5.1/NewKernel_d/include/CGAL/Epeck_d.h $ // $Id: Epeck_d.h 52164b1 2019-10-19T15:34:59+02:00 Sébastien Loriot // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Marc Glisse #ifndef CGAL_EPECK_D_H #define CGAL_EPECK_D_H #include #include #include #include #include #include #include #include // TODO: add static filters somewhere namespace CGAL { #define CGAL_KA Cartesian_base_d #define CGAL_KE Cartesian_base_d::Type, Dim> template using Epeck_d_help1 = Lazy_cartesian>; #undef CGAL_KE #undef CGAL_KA #undef CGAL_BASE #define CGAL_BASE \ Kernel_d_interface< \ Cartesian_wrap< \ Epeck_d_help1, \ Epeck_d > > template struct Epeck_d : CGAL_BASE { constexpr Epeck_d(){} constexpr Epeck_d(int d):CGAL_BASE(d){} }; #undef CGAL_BASE } #include #endif