⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 side_of_oriented_circle_2.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
// Copyright (c) 2001,2004  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 Lesser General Public License as// published by the Free Software Foundation; version 2.1 of the License.// See the file LICENSE.LGPL 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.//// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/Filtered_kernel/include/CGAL/Static_filters/Side_of_oriented_circle_2.h $// $Id: Side_of_oriented_circle_2.h 35070 2006-11-06 17:12:11Z spion $// //// Author(s)     : Sylvain Pion#ifndef CGAL_STATIC_FILTERS_SIDE_OF_ORIENTED_CIRCLE_2_H#define CGAL_STATIC_FILTERS_SIDE_OF_ORIENTED_CIRCLE_2_H#include <CGAL/Profile_counter.h>#include <CGAL/Static_filter_error.h>#include <cmath>CGAL_BEGIN_NAMESPACEtemplate < typename K_base >class SF_Side_of_oriented_circle_2  : public K_base::Side_of_oriented_circle_2{  typedef typename K_base::Point_2                      Point_2;  typedef typename K_base::Side_of_oriented_circle_2    Base;public:  Oriented_side operator()(const Point_2 &p, const Point_2 &q,	                   const Point_2 &r, const Point_2 &t) const  {      CGAL_PROFILER("In_circle_2 calls");      using std::fabs;      double px, py, qx, qy, rx, ry, tx, ty;      if (fit_in_double(p.x(), px) && fit_in_double(p.y(), py) &&          fit_in_double(q.x(), qx) && fit_in_double(q.y(), qy) &&          fit_in_double(r.x(), rx) && fit_in_double(r.y(), ry) &&          fit_in_double(t.x(), tx) && fit_in_double(t.y(), ty))      {          CGAL_PROFILER("In_circle_2 semi-static attempts");          double qpx = qx-px;          double qpy = qy-py;          double rpx = rx-px;          double rpy = ry-py;          double tpx = tx-px;          double tpy = ty-py;	  double tqx = tx-qx;	  double tqy = ty-qy;	  double rqx = rx-qx;	  double rqy = ry-qy;          double det = det2x2_by_formula(qpx*tpy - qpy*tpx, tpx*tqx + tpy*tqy,                                         qpx*rpy - qpy*rpx, rpx*rqx + rpy*rqy);          // We compute the semi-static bound.          double maxx = fabs(qpx);          if (maxx < fabs(rpx)) maxx = fabs(rpx);          if (maxx < fabs(tpx)) maxx = fabs(tpx);          if (maxx < fabs(tqx)) maxx = fabs(tqx);          if (maxx < fabs(rqx)) maxx = fabs(rqx);          double maxy = fabs(qpy);          if (maxy < fabs(rpy)) maxy = fabs(rpy);          if (maxy < fabs(tpy)) maxy = fabs(tpy);          if (maxy < fabs(tqy)) maxy = fabs(tqy);          if (maxy < fabs(rqy)) maxy = fabs(rqy);          if (maxx > maxy)  std::swap(maxx, maxy);          double eps = 8.8878565762001373e-15 * maxx * maxy * (maxy*maxy);          // Protect against underflow in the computation of eps.          if (maxx < 1e-73) {            if (maxx == 0)              return ON_ORIENTED_BOUNDARY;          }          else if (maxy < 1e76) /* sqrt(sqrt(max_double/16 [hadamard])) */ {            if (det > eps)  return ON_POSITIVE_SIDE;            if (det < -eps) return ON_NEGATIVE_SIDE;          }          CGAL_PROFILER("In_circle_2 semi-static failures");      }      return Base::operator()(p, q, r, t);  }  // Computes the epsilon for In_circle_2.  static double compute_epsilon()  {    typedef CGAL::Static_filter_error F;    F t1 = F(1, F::ulp()/2);         // First translation    F a = t1*t1 - t1*t1;    F b = t1*t1 + t1*t1;    F det = det2x2_by_formula(a, b, a, b);    double err = det.error();    err += err * 3 * F::ulp(); // Correction due to "eps * maxx * maxy...".    std::cerr << "*** epsilon for In_circle_2 = " << err << std::endl;    return err;  }};CGAL_END_NAMESPACE#endif // CGAL_STATIC_FILTERS_SIDE_OF_ORIENTED_CIRCLE_2_H

⌨️ 快捷键说明

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