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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
// Copyright (c) 2008 INRIA Sophia-Antipolis (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
// You can redistribute it and/or modify it under the terms of the GNU
// 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: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/next/Circular_kernel_3/include/CGAL/Circular_kernel_3/internal_function_compare_spherical_kernel.h $
// $Id: internal_function_compare_spherical_kernel.h 67117 2012-01-13 18:14:48Z lrineau $
//
// Author(s) : Monique Teillaud, Sylvain Pion, Pedro Machado,
// Julien Hazebrouck, Damien Leroy
// Partially supported by the IST Programme of the EU as a
// STREP (FET Open) Project under Contract No IST-006413
// (ACS -- Algorithms for Complex Shapes)
#ifndef CGAL_SPHERICAL_KERNEL_PREDICATES_COMPARE_3_H
#define CGAL_SPHERICAL_KERNEL_PREDICATES_COMPARE_3_H
namespace CGAL {
namespace SphericalFunctors {
// we can optimize those functions by comparing
// the references before doing the comparison
// as in CK
template < class SK >
inline
Comparison_result
compare_x(const typename SK::Circular_arc_point_3 &p0,
const typename SK::Circular_arc_point_3 &p1)
{
typedef typename SK::Algebraic_kernel Algebraic_kernel;
return Algebraic_kernel().compare_x_object()(p0.coordinates(), p1.coordinates());
}
template < class SK >
inline
Comparison_result
compare_y(const typename SK::Circular_arc_point_3 &p0,
const typename SK::Circular_arc_point_3 &p1)
{
typedef typename SK::Algebraic_kernel Algebraic_kernel;
return Algebraic_kernel().compare_y_object()(p0.coordinates(), p1.coordinates());
}
template < class SK >
inline
Comparison_result
compare_z(const typename SK::Circular_arc_point_3 &p0,
const typename SK::Circular_arc_point_3 &p1)
{
typedef typename SK::Algebraic_kernel Algebraic_kernel;
return Algebraic_kernel().compare_z_object()(p0.coordinates(), p1.coordinates());
}
template < class SK >
inline
Comparison_result
compare_xy(const typename SK::Circular_arc_point_3 &p0,
const typename SK::Circular_arc_point_3 &p1)
{
typedef typename SK::Algebraic_kernel Algebraic_kernel;
return Algebraic_kernel().compare_xy_object()(p0.coordinates(), p1.coordinates());
}
template < class SK >
inline
Comparison_result
compare_xyz(const typename SK::Circular_arc_point_3 &p0,
const typename SK::Circular_arc_point_3 &p1)
{
typedef typename SK::Algebraic_kernel Algebraic_kernel;
return Algebraic_kernel().compare_xyz_object()(p0.coordinates(), p1.coordinates());
}
}//SphericalFunctors
}//CGAL
#endif //CGAL_SPHERICAL_KERNEL_PREDICATES_COMPARE_3_H
|