// 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/Epick_d.h $ // $Id: Epick_d.h 7929c7d 2020-04-08T14:42:47+02:00 Marc Glisse // SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Marc Glisse #ifndef CGAL_EPICK_D_H #define CGAL_EPICK_D_H #include #include #include #include #include #include #include #include #include namespace CGAL { #define CGAL_BASE \ Cartesian_filter_K< \ Cartesian_base_d, \ Cartesian_base_d, \ Cartesian_base_d::Type, Dim> \ > template struct Epick_d_help1 : CGAL_BASE { constexpr Epick_d_help1(){} constexpr Epick_d_help1(int d):CGAL_BASE(d){} }; #undef CGAL_BASE #define CGAL_BASE \ Cartesian_filter_K< \ Epick_d_help1, \ Cartesian_base_d, \ Cartesian_base_d::Type, Dim>, \ typename Functors_without_division::type \ > template struct Epick_d_help2 : CGAL_BASE { constexpr Epick_d_help2(){} constexpr Epick_d_help2(int d):CGAL_BASE(d){} }; #undef CGAL_BASE #define CGAL_BASE \ Cartesian_static_filters,Epick_d_help3 > template struct Epick_d_help3 : CGAL_BASE { constexpr Epick_d_help3(){} constexpr Epick_d_help3(int d):CGAL_BASE(d){} }; #undef CGAL_BASE #define CGAL_BASE \ Kernel_d_interface< \ Cartesian_wrap< \ Epick_d_help3, \ Epick_d > > template struct Epick_d : CGAL_BASE { constexpr Epick_d(){} constexpr Epick_d(int d):CGAL_BASE(d){} }; #undef CGAL_BASE } #include #endif