pm_point_utilities_2.h
来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 107 行
H
107 行
// Copyright (c) 1997 Tel-Aviv University (Israel).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL distributed with CGAL.//// 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.//// $Source: /CVSROOT/CGAL/Packages/Planar_map/include/CGAL/Planar_map_2/Pm_point_utilities_2.h,v $// $Revision: 1.4 $ $Date: 2003/09/18 10:24:48 $// $Name: $//// Author(s) : Shai Hirsch <shaihi@post.tau.ac.il>// Efi Fogel <efif@post.tau.ac.il>#ifndef CGAL_PM_POINT_UTILITIES_2_H#define CGAL_PM_POINT_UTILITIES_2_HCGAL_BEGIN_NAMESPACEtemplate<class Point_2>bool is_left(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().less_x_2_object()(p1, p2); }template<class Point_2>bool is_right(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().less_x_2_object()(p2, p1);}template<class Point_2>bool is_same_x(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().equal_x_object()(p1, p2);}template<class Point_2>bool is_lower(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().less_y_2_object()(p1, p2);}template<class Point_2>bool is_higher(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().less_y_2_object()(p2, p1);}template<class Point_2>bool is_same_y(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return Kernel().equal_y_object()(p1, p2);}template<class Point_2>bool is_same(const Point_2 & p1, const Point_2 &p2){ typedef typename Point_2::R Kernel; return (compare_x(p1, p2) == EQUAL) && (compare_y(p1, p2) == EQUAL);}template<class Point_2>const Point_2 & leftmost(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return (is_left(p1, p2) ? p1 : p2); }template<class Point_2>const Point_2 & rightmost(const Point_2 & p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return (is_right(p1, p2) ? p1 : p2); } template<class Point_2>const Point_2 & lowest(const Point_2 &p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return (is_lower(p1, p2) ? p1 : p2);} template<class Point_2>const Point_2 & highest(const Point_2 &p1, const Point_2 & p2){ typedef typename Point_2::R Kernel; return (is_higher(p1, p2) ? p1 : p2);}CGAL_END_NAMESPACE#endif // CGAL_PM_POINT_UTILITIES_2_H// EOF
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?