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/LineH2.h $ 00019 // $Id: LineH2.h 49057 2009-04-30 14:03:52Z spion $ 00020 // 00021 // 00022 // Author(s) : Stefan Schirra 00023 00024 #ifndef CGAL_LINEH2_H 00025 #define CGAL_LINEH2_H 00026 00027 #include <CGAL/array.h> 00028 00029 CGAL_BEGIN_NAMESPACE 00030 00031 template < class R_ > 00032 class LineH2 00033 { 00034 typedef typename R_::FT FT; 00035 typedef typename R_::RT RT; 00036 typedef typename R_::Point_2 Point_2; 00037 typedef typename R_::Vector_2 Vector_2; 00038 typedef typename R_::Direction_2 Direction_2; 00039 typedef typename R_::Segment_2 Segment_2; 00040 typedef typename R_::Ray_2 Ray_2; 00041 typedef typename R_::Line_2 Line_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 LineH2() {} 00053 LineH2(const RT& a, const RT& b, const RT& c) 00054 : base(CGAL::make_array(a, b, c)) {} 00055 00056 bool operator==(const LineH2<R>& l) const; 00057 bool operator!=(const LineH2<R>& l) const; 00058 00059 const RT & a() const { return get(base)[0]; } 00060 const RT & b() const { return get(base)[1]; } 00061 const RT & c() const { return get(base)[2]; } 00062 00063 }; 00064 00065 template < class R > 00066 CGAL_KERNEL_MEDIUM_INLINE 00067 bool 00068 LineH2<R>::operator==(const LineH2<R>& l) const 00069 { 00070 if ( (a() * l.c() != l.a() * c() ) 00071 ||(b() * l.c() != l.b() * c() ) ) 00072 { 00073 return false; 00074 } 00075 int sc = static_cast<int>(CGAL_NTS sign(c())); 00076 int slc = static_cast<int>(CGAL_NTS sign(l.c())); 00077 if ( sc == slc ) 00078 { 00079 if (sc == 0) 00080 return ( (a()*l.b() == b()*l.a() ) 00081 &&(CGAL_NTS sign(a() )== CGAL_NTS sign( l.a() )) 00082 &&(CGAL_NTS sign(b() )== CGAL_NTS sign( l.b() )) ); 00083 else 00084 return true; 00085 } 00086 else 00087 return false; 00088 } 00089 00090 template < class R > 00091 inline 00092 bool 00093 LineH2<R>::operator!=(const LineH2<R>& l) const 00094 { return !(*this == l); } 00095 00096 CGAL_END_NAMESPACE 00097 00098 #endif // CGAL_LINEH2_H