BWAPI
|
00001 // Copyright (c) 2000 Utrecht University (The Netherlands), 00002 // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), 00003 // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg 00004 // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), 00005 // and Tel-Aviv University (Israel). All rights reserved. 00006 // 00007 // This file is part of CGAL (www.cgal.org); you can redistribute it and/or 00008 // modify it under the terms of the GNU Lesser General Public License as 00009 // published by the Free Software Foundation; version 2.1 of the License. 00010 // See the file LICENSE.LGPL distributed with CGAL. 00011 // 00012 // Licensees holding a valid commercial license may use this file in 00013 // accordance with the commercial license agreement provided with the software. 00014 // 00015 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00016 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00017 // 00018 // $URL: svn+ssh://scm.gforge.inria.fr/svn/cgal/branches/CGAL-3.5-branch/Cartesian_kernel/include/CGAL/Cartesian/Direction_2.h $ 00019 // $Id: Direction_2.h 49057 2009-04-30 14:03:52Z spion $ 00020 // 00021 // 00022 // Author(s) : Andreas Fabri, Herve Bronnimann 00023 00024 #ifndef CGAL_CARTESIAN_DIRECTION_2_H 00025 #define CGAL_CARTESIAN_DIRECTION_2_H 00026 00027 #include <CGAL/array.h> 00028 #include <CGAL/Handle_for.h> 00029 00030 CGAL_BEGIN_NAMESPACE 00031 00032 template < class R_ > 00033 class DirectionC2 00034 { 00035 typedef DirectionC2<R_> Self; 00036 typedef typename R_::FT FT; 00037 typedef FT RT; 00038 typedef typename R_::Point_2 Point_2; 00039 typedef typename R_::Vector_2 Vector_2; 00040 typedef typename R_::Line_2 Line_2; 00041 typedef typename R_::Ray_2 Ray_2; 00042 typedef typename R_::Segment_2 Segment_2; 00043 typedef typename R_::Direction_2 Direction_2; 00044 00045 typedef cpp0x::array<FT, 2> Rep; 00046 typedef typename R_::template Handle<Rep>::type Base; 00047 00048 Base base; 00049 00050 public: 00051 00052 typedef R_ R; 00053 00054 DirectionC2() {} 00055 00056 DirectionC2(const FT &x, const FT &y) 00057 : base(CGAL::make_array(x, y)) {} 00058 00059 bool operator==(const DirectionC2 &d) const; 00060 bool operator!=(const DirectionC2 &d) const; 00061 00062 Vector_2 to_vector() const; 00063 00064 const RT & dx() const 00065 { 00066 return get(base)[0]; 00067 } 00068 const RT & dy() const 00069 { 00070 return get(base)[1]; 00071 } 00072 }; 00073 00074 template < class R > 00075 inline 00076 bool 00077 DirectionC2<R>::operator==(const DirectionC2<R> &d) const 00078 { 00079 if (CGAL::identical(base, d.base)) 00080 return true; 00081 return equal_direction(*this, d); 00082 } 00083 00084 template < class R > 00085 inline 00086 bool 00087 DirectionC2<R>::operator!=(const DirectionC2<R> &d) const 00088 { 00089 return !( *this == d ); 00090 } 00091 00092 00093 template < class R > 00094 inline 00095 typename DirectionC2<R>::Vector_2 00096 DirectionC2<R>::to_vector() const 00097 { 00098 return Vector_2(dx(), dy()); 00099 } 00100 00101 CGAL_END_NAMESPACE 00102 00103 #endif // CGAL_CARTESIAN_DIRECTION_2_H