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

📄 orientation_3.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/Orientation_3.h $// $Id: Orientation_3.h 35070 2006-11-06 17:12:11Z spion $// //// Author(s)     : Sylvain Pion#ifndef CGAL_STATIC_FILTERS_ORIENTATION_3_H#define CGAL_STATIC_FILTERS_ORIENTATION_3_H#include <CGAL/Profile_counter.h>#include <CGAL/Static_filter_error.h>#include <cmath>CGAL_BEGIN_NAMESPACEtemplate < typename K_base >class SF_Orientation_3  : public K_base::Orientation_3{  typedef typename K_base::Point_3          Point_3;  typedef typename K_base::Vector_3         Vector_3;  typedef typename K_base::Sphere_3         Sphere_3;  typedef typename K_base::Orientation_3    Base;public: typedef typename Base::result_type  result_type;#ifndef CGAL_CFG_MATCHING_BUG_6  using Base::operator();#else   result_type  operator()(const Vector_3& u, const Vector_3& v, const Vector_3& w) const  {     return Base::operator()(u,v,w);  }    result_type  operator()(const Sphere_3& s) const  {     return Base::operator()(s);  }#endif  result_type   operator()(const Point_3 &p, const Point_3 &q,	     const Point_3 &r, const Point_3 &s) const  {      CGAL_PROFILER("Orientation_3 calls");      using std::fabs;      double px, py, pz, qx, qy, qz, rx, ry, rz, sx, sy, sz;      if (fit_in_double(p.x(), px) && fit_in_double(p.y(), py) &&          fit_in_double(p.z(), pz) &&          fit_in_double(q.x(), qx) && fit_in_double(q.y(), qy) &&          fit_in_double(q.z(), qz) &&          fit_in_double(r.x(), rx) && fit_in_double(r.y(), ry) &&          fit_in_double(r.z(), rz) &&          fit_in_double(s.x(), sx) && fit_in_double(s.y(), sy) &&          fit_in_double(s.z(), sz))      {          CGAL_PROFILER("Orientation_3 semi-static attempts");          double pqx = qx - px;          double pqy = qy - py;          double pqz = qz - pz;          double prx = rx - px;          double pry = ry - py;          double prz = rz - pz;          double psx = sx - px;          double psy = sy - py;          double psz = sz - pz;          // Then semi-static filter.          double maxx = fabs(pqx);          if (maxx < fabs(prx)) maxx = fabs(prx);          if (maxx < fabs(psx)) maxx = fabs(psx);          double maxy = fabs(pqy);          if (maxy < fabs(pry)) maxy = fabs(pry);          if (maxy < fabs(psy)) maxy = fabs(psy);          double maxz = fabs(pqz);          if (maxz < fabs(prz)) maxz = fabs(prz);          if (maxz < fabs(psz)) maxz = fabs(psz);          double eps = 5.1107127829973299e-15 * maxx * maxy * maxz;          double det = det3x3_by_formula(pqx, pqy, pqz,                                         prx, pry, prz,                                         psx, psy, psz);          // Sort maxx < maxy < maxz.          if (maxx > maxz)              std::swap(maxx, maxz);          if (maxy > maxz)              std::swap(maxy, maxz);          else if (maxy < maxx)              std::swap(maxx, maxy);          // Protect against underflow in the computation of eps.          if (maxx < 1e-97) /* cbrt(min_double/eps) */ {            if (maxx == 0)              return ZERO;          }          // Protect against overflow in the computation of det.          else if (maxz < 1e102) /* cbrt(max_double [hadamard]/4) */ {            if (det > eps)  return POSITIVE;            if (det < -eps) return NEGATIVE;          }          CGAL_PROFILER("Orientation_3 semi-static failures");      }      return Base::operator()(p, q, r, s);  }  // Computes the epsilon for Orientation_3.  static double compute_epsilon()  {    typedef Static_filter_error F;    F t1 = F(1, F::ulp()/2);         // First translation    F det = det3x3_by_formula(t1, t1, t1,                              t1, t1, t1,                              t1, t1, t1); // Full det    double err = det.error();    err += err * 2 * F::ulp(); // Correction due to "eps * maxx * maxy...".    std::cerr << "*** epsilon for Orientation_3 = " << err << std::endl;    return err;  }};CGAL_END_NAMESPACE#endif // CGAL_STATIC_FILTERS_ORIENTATION_3_H

⌨️ 快捷键说明

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