ag2_bounded_side_of_ccw_circle_c2.h

来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 100 行

H
100
字号
// Copyright (c) 2003,2004  INRIA Sophia-Antipolis (France).// 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/Apollonius_graph_2/include/CGAL/predicates/Ag2_bounded_side_of_ccw_circle_C2.h,v $// $Revision: 1.2 $ $Date: 2004/09/03 17:26:35 $// $Name:  $//// Author(s)     : Menelaos Karavelas <mkaravel@cse.nd.edu>#ifndef CGAL_AG2_BOUNDED_SIDE_OF_CCW_CIRCLE_C2_H#define CGAL_AG2_BOUNDED_SIDE_OF_CCW_CIRCLE_C2_H#include <CGAL/enum.h>#include <CGAL/Number_type_traits.h>#include <CGAL/predicates/Apollonius_graph_predicate_constructions_C2.h>CGAL_BEGIN_NAMESPACE//--------------------------------------------------------------------template< class K >class Sign_of_Voronoi_radius{public:  typedef CGAL::Voronoi_radius<K>   Voronoi_radius;  typedef typename K::FT            FT;public:  inline  Sign operator()(const Voronoi_radius& vr, const Sqrt_field_tag&) const    {      FT r = vr.c1() + vr.c2() * CGAL::sqrt(vr.delta());      return CGAL::sign(r);    }  inline  Sign operator()(const Voronoi_radius& vr, const Ring_tag&) const    {      // this is another way of doing this; the degree becomes 10      // instead of 5 in this case.      //      return sign_a_plus_b_x_sqrt_c(vr.c1(), vr.c2(), vr.delta());      bool is_first_root = CGAL::is_negative(vr.c2());      Sign s_beta = CGAL::sign(vr.b());      Sign s_gamma = CGAL::sign(vr.c());      // the existence test      Sign sign_of_root;      if ( is_first_root ) {	sign_of_root = sign_of_first_root(s_beta, s_gamma);      } else {	sign_of_root = sign_of_second_root(s_beta, s_gamma);      }      return sign_of_root;    }};template< class K >class Bounded_side_of_CCW_circle{private:  CGAL::Sign_of_Voronoi_radius<K> test;public:  typedef CGAL::Voronoi_radius<K>   Voronoi_radius;  typedef typename K::FT            FT;public:  template<class Tag>  inline Bounded_side  operator()(const Voronoi_radius& vr, const Tag& tag)    {      return Bounded_side(  opposite( test(vr, tag ) )  );    }};//--------------------------------------------------------------------CGAL_END_NAMESPACE#endif // CGAL_AG2_BOUNDED_SIDE_OF_CCW_CIRCLE_C2_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?