triangulation_mesher_level_traits_2.h

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

H
81
字号
// Copyright (c) 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/Mesh_2/include/CGAL/Mesh_2/Triangulation_mesher_level_traits_2.h,v $// $Revision: 1.4 $ $Date: 2004/10/19 18:29:49 $// $Name:  $//// Author(s)     : Laurent RINEAU#ifndef CGAL_MESH_2_TRIANGULATION_MESHER_LEVEL_TRAITS_2_H#define CGAL_MESH_2_TRIANGULATION_MESHER_LEVEL_TRAITS_2_H#include <list>namespace CGAL {template <typename Tr>struct Triangulation_mesher_level_traits_2{  typedef Tr Triangulation;  typedef typename Tr::Point Point;  typedef typename Tr::Vertex_handle Vertex_handle;  typedef typename Tr::Face_handle Face_handle;  typedef typename Tr::Edge Edge;  struct Zone {    typedef std::list<Face_handle> Faces;    typedef std::list<Edge> Edges;  public:    typedef typename Faces::iterator Faces_iterator;    typedef typename Edges::iterator Edges_iterator;    Faces faces;    Edges boundary_edges;  };  static Zone get_conflicts_zone(Tr& t, const Point& p)  {    Zone zone;    t.get_conflicts_and_boundary(p,                                 std::back_inserter(zone.faces),                                 std::back_inserter(zone.boundary_edges)                                 );#ifdef DEBUG    std::cerr << "get_conflicts_and_boundary(" << p << "):" << std::endl              << "faces: " << zone.faces.size() << std::endl              << "edges: " << zone.boundary_edges.size() << std::endl;#endif // DEBUG    return zone;  }  static Vertex_handle insert(Tr&t, const Point& p, Zone& zone)  {#ifdef DEBUG    std::cerr << "insert(" << p << "): "               << zone.boundary_edges.size() << " edges." << std::endl;#endif    return t.star_hole(p,                       zone.boundary_edges.begin(),                       zone.boundary_edges.end(),                       zone.faces.begin(),                       zone.faces.end());  }}; // end Triangulation_mesher_level_traits_2}; // end namespace CGAL#endif // CGAL_MESH_2_TRIANGULATION_MESHER_LEVEL_TRAITS_2_H

⌨️ 快捷键说明

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