BWAPI
|
00001 // Copyright (c) 1999 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/Homogeneous_kernel/include/CGAL/Homogeneous/DirectionH2.h $ 00019 // $Id: DirectionH2.h 49057 2009-04-30 14:03:52Z spion $ 00020 // 00021 // 00022 // Author(s) : Stefan Schirra 00023 00024 #ifndef CGAL_HOMOGENEOUS_DIRECTION_2_H 00025 #define CGAL_HOMOGENEOUS_DIRECTION_2_H 00026 00027 #include <CGAL/array.h> 00028 00029 CGAL_BEGIN_NAMESPACE 00030 00031 template < class R_ > 00032 class DirectionH2 00033 { 00034 typedef DirectionH2<R_> Self; 00035 typedef typename R_::FT FT; 00036 typedef typename R_::RT RT; 00037 typedef typename R_::Point_2 Point_2; 00038 typedef typename R_::Vector_2 Vector_2; 00039 typedef typename R_::Line_2 Line_2; 00040 typedef typename R_::Ray_2 Ray_2; 00041 typedef typename R_::Segment_2 Segment_2; 00042 00043 typedef cpp0x::array<RT, 3> Rep; 00044 typedef typename R_::template Handle<Rep>::type Base; 00045 00046 Base base; 00047 00048 public: 00049 00050 typedef R_ R; 00051 00052 typedef const RT& Homogeneous_coordinate_type; 00053 00054 const Self& 00055 rep() const 00056 { 00057 return static_cast<const Self& >(*this); 00058 } 00059 00060 DirectionH2() {} 00061 00062 DirectionH2(const RT& x, const RT& y) 00063 : base(CGAL::make_array(x, y, RT(1))) {} 00064 00065 // TODO Not documented : should not exist, not used. 00066 // we should also change array<RT, 3> -> array<RT, 2> 00067 DirectionH2(const RT& x, const RT& y, const RT& w ) 00068 : base( w > RT(0) ? CGAL::make_array(x, y, w) 00069 : CGAL::make_array<RT>(-x, -y, -w) ) {} 00070 00071 bool operator==( const DirectionH2<R>& d) const; 00072 bool operator!=( const DirectionH2<R>& d) const; 00073 00074 00075 Vector_2 to_vector() const; 00076 00077 const RT & x() const { return get(base)[0]; } 00078 const RT & y() const { return get(base)[1]; } 00079 00080 const RT & delta(int i) const; 00081 const RT & dx() const { return get(base)[0]; } 00082 const RT & dy() const { return get(base)[1]; } 00083 00084 }; 00085 00086 template <class R > 00087 CGAL_KERNEL_INLINE 00088 bool 00089 DirectionH2<R>::operator==( const DirectionH2<R>& d) const 00090 { 00091 return ( ( x() * d.y() == y() * d.x() ) 00092 &&( CGAL_NTS sign( x() ) == CGAL_NTS sign( d.x() ) ) 00093 &&( CGAL_NTS sign( y() ) == CGAL_NTS sign( d.y() ) ) ); 00094 } 00095 00096 template <class R > 00097 inline 00098 bool 00099 DirectionH2<R>::operator!=( const DirectionH2<R>& d) const 00100 { return !(*this == d); } 00101 00102 CGAL_END_NAMESPACE 00103 00104 #include <CGAL/Homogeneous/predicates_on_directionsH2.h> 00105 00106 CGAL_BEGIN_NAMESPACE 00107 00108 template <class R > 00109 CGAL_KERNEL_INLINE 00110 typename DirectionH2<R>::Vector_2 00111 DirectionH2<R>::to_vector() const 00112 { return Vector_2(dx(), dy()); } 00113 00114 CGAL_END_NAMESPACE 00115 00116 #endif // CGAL_HOMOGENEOUS_DIRECTION_2_H