📄 tds_2_helpers.h
字号:
// Copyright (c) 2005 Stanford University (USA).// 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/Kinetic_data_structures/include/CGAL/Kinetic/internal/tds_2_helpers.h $// $Id: tds_2_helpers.h 34916 2006-10-24 18:52:12Z drussel $// //// Author(s) : Daniel Russel <drussel@alumni.princeton.edu>#ifndef CGAL_TRIANGULATION_DATA_STRUCTURE_HELPER_2_H#define CGAL_TRIANGULATION_DATA_STRUCTURE_HELPER_2_H#include <CGAL/Kinetic/basic.h>#include <utility>CGAL_KINETIC_BEGIN_INTERNAL_NAMESPACEtemplate <class TDS>struct Triangulation_data_structure_helper_2{ typedef typename TDS::Edge Edge; typedef typename TDS::Vertex_handle Vertex_handle; typedef typename TDS::Face Face; //typedef typename Face::Edge_label Edge_label; static int low_degree(Vertex_handle vh, const TDS &tds) { unsigned int r=3; typename TDS::Face_circulator f= tds.incident_faces(vh), s=f; ++f; ++f; ++f; while (f != s) { ++r; if (r==5) break; ++f; }; CGAL_postcondition(vh->degree() < 5 && vh->degree() == r || vh->degree() >=5 && r==5); return r; } static Edge mirror_edge(const Edge &e) { int i= e.first->mirror_index(e.second); return Edge(e.first->neighbor(e.second), i); } static Vertex_handle origin(const Edge &e) { int o= e.first->ccw(e.second); return e.first->vertex(o); } static Vertex_handle destination(const Edge &e) { int o= e.first->cw(e.second); return e.first->vertex(o); } static Vertex_handle third_vertex(const Edge &e) { return e.first->vertex(e.second); } static Vertex_handle mirror_vertex(const Edge &e) { return third_vertex(mirror_edge(e)); }};CGAL_KINETIC_END_INTERNAL_NAMESPACE#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -