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

📄 access_coordinates_begin_2.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
// Copyright (c) 1997-2001  Utrecht University (The Netherlands),// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany),// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria),// and Tel-Aviv University (Israel).  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/Optimisation_basic/include/CGAL/Optimisation/Access_coordinates_begin_2.h $// $Id: Access_coordinates_begin_2.h 36740 2007-03-01 16:52:45Z gaertner $// //// Author(s)     : Sven Schoenherr <sven@inf.ethz.ch>#ifndef CGAL_OPTIMISATION_ACCESS_COORDINATES_BEGIN_2_H#define CGAL_OPTIMISATION_ACCESS_COORDINATES_BEGIN_2_HCGAL_BEGIN_NAMESPACE// Class declarations// ==================template < class R_ >class Access_coordinates_begin_2;template < class R_ >class Point_2_coordinate_iterator;// Class interfaces// ================template < class R_ >class Point_2_coordinate_iterator {  public:    // self    typedef  R_                         R;    typedef  Point_2_coordinate_iterator<R>                                        Self;    // types    typedef  typename R::Point_2        Point;    // iterator types    typedef  typename R::RT             value_type;    typedef  std::ptrdiff_t             difference_type;    typedef  value_type*                pointer;    typedef  value_type&                reference;    typedef  std::random_access_iterator_tag                                        iterator_category;    // forward operations    Point_2_coordinate_iterator( const Point&  point = Point(),                                 int           index = 0)        : p( point), i( index) { }    bool        operator == ( const Self& it) const { return ( i == it.i);}    bool        operator != ( const Self& it) const { return ( i != it.i);}    value_type  operator *  ( ) const { return p.homogeneous( i); }    Self&       operator ++ (    ) {                   ++i; return *this; }    Self        operator ++ ( int) { Self tmp = *this; ++i; return tmp;   }    // bidirectional operations    Self&       operator -- (    ) {                   --i; return *this; }    Self        operator -- ( int) { Self tmp = *this; --i; return tmp;   }    // random access operations    Self&       operator += ( int n) { i += n; return *this; }    Self&       operator -= ( int n) { i -= n; return *this; }    Self        operator +  ( int n) const                                     { Self tmp = *this; return tmp += n; }    Self        operator -  ( int n) const                                     { Self tmp = *this; return tmp -= n; }    difference_type                operator -  ( const Self& it) const { return i - it.i; }    value_type  operator [] ( int n) const { return p.homogeneous( i+n); }    bool   operator <  ( const Self& it) const { return ( i <  it.i); }    bool   operator >  ( const Self& it) const { return ( i >  it.i); }    bool   operator <= ( const Self& it) const { return ( i <= it.i); }    bool   operator >= ( const Self& it) const { return ( i >= it.i); }private:    Point         p;    int           i;};template < class R_ >class Access_coordinates_begin_2 {  public:    // self    typedef  R_                         R;    typedef  Access_coordinates_begin_2<R>                                        Self;    // types    typedef  typename R::Point_2        Point;    typedef  Point_2_coordinate_iterator<R>                                        Coordinate_iterator;    // unary function class types    typedef  Coordinate_iterator        result_type;    typedef  Point                      argument_type;    // creation    Access_coordinates_begin_2( ) { }    // operations    Coordinate_iterator    operator() ( const Point& p) const { return Coordinate_iterator( p); }};CGAL_END_NAMESPACE#endif // CGAL_OPTIMISATION_ACCESS_COORDINATES_BEGIN_2_H// ===== EOF ==================================================================

⌨️ 快捷键说明

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