access_coordinates_begin_2.h

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

H
131
字号
// 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.//// $Source: /CVSROOT/CGAL/Packages/Optimisation_basic/include/CGAL/Optimisation/Access_coordinates_begin_2.h,v $// $Revision: 1.8 $ $Date: 2004/09/05 12:30:34 $// $Name:  $//// 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  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:    const 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 + =
减小字号Ctrl + -
显示快捷键?