segment_voronoi_diagram_vertex_c2.h
来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 103 行
H
103 行
// Copyright (c) 2003,2004 INRIA Sophia-Antipolis (France) and// Notre Dame University (U.S.A.). 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/Segment_Voronoi_diagram_2/include/CGAL/predicates/Segment_Voronoi_diagram_vertex_C2.h,v $// $Revision: 1.5 $ $Date: 2004/02/23 22:18:42 $// $Name: $//// Author(s) : Menelaos Karavelas <mkaravel@cse.nd.edu>#ifndef CGAL_SEGMENT_VORONOI_DIAGRAM_VORONOI_VERTEX_C2_H#define CGAL_SEGMENT_VORONOI_DIAGRAM_VORONOI_VERTEX_C2_H#include <CGAL/Number_type_traits.h>#include <CGAL/predicates/Svd_Voronoi_vertex_ring_C2.h>#include <CGAL/predicates/Svd_Voronoi_vertex_sqrt_field_C2.h>CGAL_BEGIN_NAMESPACEnamespace CGALi {#if 0 template<class M> struct Svd_which_base_C2 { template<class K> struct Which_base { typedef Svd_voronoi_vertex_ring_C2<K> Base; }; }; template <> struct Svd_which_base_C2<Sqrt_field_tag> { template <class K> struct Which_base { typedef Svd_voronoi_vertex_sqrt_field_C2<K> Base; }; };#else // with partial specialization: template<class K,class M> struct Svd_which_base_C2; template<class K> struct Svd_which_base_C2<K,Ring_tag> { typedef Svd_voronoi_vertex_ring_C2<K> Base; }; template<class K> struct Svd_which_base_C2<K,Sqrt_field_tag> { typedef Svd_voronoi_vertex_sqrt_field_C2<K> Base; };#endif} // namespace CGALi//----------------------------------------------------------------------template<class K, class M>class Svd_voronoi_vertex_C2// : public CGALi::Svd_which_base_C2<M>::template Which_base<K>::Base// using partial specialization: : public CGALi::Svd_which_base_C2<K,M>::Base{private: // typedef typename // CGALi::Svd_which_base_C2<M>::template Which_base<K>::Base Base; typedef typename CGALi::Svd_which_base_C2<K,M>::Base Base;protected: typedef typename Base::Site_2 Site_2;public: Svd_voronoi_vertex_C2(const Site_2& p, const Site_2& q, const Site_2& r) : Base(p, q, r) {}};CGAL_END_NAMESPACE#endif // CGAL_SEGMENT_VORONOI_DIAGRAM_VORONOI_VERTEX_C2_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?