// Copyright (c) 2014 // INRIA Saclay-Ile de France (France) // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as // published by the Free Software Foundation; either version 3 of the License, // or (at your option) any later version. // // Licensees holding a valid commercial license may use this file in // accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ // // Author(s) : Marc Glisse #ifndef CGAL_VECTOR_DETPTS_H #define CGAL_VECTOR_DETPTS_H #include #include namespace CGAL { template ::value, bool = LA::template Property::value && LA::template Property::value> struct Add_determinant_of_points_from_vectors_and_minus : LA { template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; }; //FIXME: Use variadics and boost so it works in any dimension. template struct Add_determinant_of_points_from_vectors_and_minus , Max_dim_, false, true> : LA { typedef typename LA::NT NT; typedef typename LA::Vector Vector; template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; template struct Property : LA::template Property

{}; template struct Property : boost::true_type {}; static NT determinant_of_points(Vector const&a, Vector const&b, Vector const&c){ return LA::determinant_of_vectors(b-a,c-a); } static Sign sign_of_determinant_of_points(Vector const&a, Vector const&b, Vector const&c){ return LA::sign_of_determinant_of_vectors(b-a,c-a); } }; template struct Add_determinant_of_points_from_vectors_and_minus , Max_dim_, false, true> : LA { typedef typename LA::NT NT; typedef typename LA::Vector Vector; template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; template struct Property : LA::template Property

{}; template struct Property : boost::true_type {}; static NT determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d){ return LA::determinant_of_vectors(b-a,c-a,d-a); } static Sign sign_of_determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d){ return LA::sign_of_determinant_of_vectors(b-a,c-a,d-a); } }; template struct Add_determinant_of_points_from_vectors_and_minus , Max_dim_, false, true> : LA { typedef typename LA::NT NT; typedef typename LA::Vector Vector; template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; template struct Property : LA::template Property

{}; template struct Property : boost::true_type {}; static NT determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e){ return LA::determinant_of_vectors(b-a,c-a,d-a,e-a); } static Sign sign_of_determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e){ return LA::sign_of_determinant_of_vectors(b-a,c-a,d-a,e-a); } }; template struct Add_determinant_of_points_from_vectors_and_minus , Max_dim_, false, true> : LA { typedef typename LA::NT NT; typedef typename LA::Vector Vector; template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; template struct Property : LA::template Property

{}; template struct Property : boost::true_type {}; static NT determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e, Vector const&f){ return LA::determinant_of_vectors(b-a,c-a,d-a,e-a,f-a); } static Sign sign_of_determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e, Vector const&f){ return LA::sign_of_determinant_of_vectors(b-a,c-a,d-a,e-a,f-a); } }; template struct Add_determinant_of_points_from_vectors_and_minus , Max_dim_, false, true> : LA { typedef typename LA::NT NT; typedef typename LA::Vector Vector; template< class D2, class D3=D2 > struct Rebind_dimension { typedef typename LA::template Rebind_dimension LA2; typedef Add_determinant_of_points_from_vectors_and_minus Other; }; template struct Property : LA::template Property

{}; template struct Property : boost::true_type {}; static NT determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e, Vector const&f, Vector const&g){ return LA::determinant_of_vectors(b-a,c-a,d-a,e-a,f-a,g-a); } static Sign sign_of_determinant_of_points(Vector const&a, Vector const&b, Vector const&c, Vector const&d, Vector const&e, Vector const&f, Vector const&g){ return LA::sign_of_determinant_of_vectors(b-a,c-a,d-a,e-a,f-a,g-a); } }; } #endif