adaptation_traits_base_2.h

来自「很多二维 三维几何计算算法 C++ 类库」· C头文件 代码 · 共 76 行

H
76
字号
// Copyright (c) 2006 Foundation for Research and Technology-Hellas (Greece).// 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.//// $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.3-branch/Voronoi_diagram_2/include/CGAL/Voronoi_diagram_2/Adaptation_traits_base_2.h $// $Id: Adaptation_traits_base_2.h 29163 2006-03-07 23:41:02Z mkaravel $// //// Author(s)     : Menelaos Karavelas <mkaravel@iacm.forth.gr>#ifndef CGAL_VORONOI_DIAGRAM_2_ADAPTATION_TRAITS_BASE_2_H#define CGAL_VORONOI_DIAGRAM_2_ADAPTATION_TRAITS_BASE_2_H 1#include <CGAL/Voronoi_diagram_2/basic.h>#include <CGAL/Voronoi_diagram_2/Adaptation_traits_functors.h>#include <CGAL/Voronoi_diagram_2/Cached_degeneracy_testers.h>#include <CGAL/Voronoi_diagram_2/Default_site_inserters.h>CGAL_BEGIN_NAMESPACECGAL_VORONOI_DIAGRAM_2_BEGIN_NAMESPACE//=========================================================================//=========================================================================template<class DG, class AS, class CVP, class NS>class Adaptation_traits_base_2{private:  typedef Adaptation_traits_base_2<DG,AS,CVP,NS>  Self;public:  typedef DG   Delaunay_graph;  typedef AS   Access_site_2;  typedef CVP  Construct_Voronoi_point_2;  typedef NS   Nearest_site_2;  typedef typename Delaunay_graph::Vertex_handle    Delaunay_vertex_handle;  typedef typename Delaunay_graph::Face_handle      Delaunay_face_handle;  typedef typename Delaunay_graph::Edge             Delaunay_edge;  typedef typename Functor_exists<Nearest_site_2>::Value  Has_nearest_site_2;  Access_site_2 access_site_2_object() const {    return Access_site_2();  }  Construct_Voronoi_point_2 construct_Voronoi_point_2_object() const {    return Construct_Voronoi_point_2();  }  Nearest_site_2 nearest_site_2_object() const {    return Nearest_site_2();  }};//=========================================================================//=========================================================================CGAL_VORONOI_DIAGRAM_2_END_NAMESPACECGAL_END_NAMESPACE#endif // CGAL_VORONOI_DIAGRAM_2_ADAPTATION_TRAITS_BASE_2_H

⌨️ 快捷键说明

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