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

📄 rayh2.h

📁 很多二维 三维几何计算算法 C++ 类库
💻 H
字号:
// Copyright (c) 1999  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/Homogeneous_kernel/include/CGAL/Homogeneous/RayH2.h $// $Id: RayH2.h 33052 2006-08-05 23:18:30Z spion $// //// Author(s)     : Stefan Schirra #ifndef CGAL_RAYH2_H#define CGAL_RAYH2_H#include <CGAL/Twotuple.h>CGAL_BEGIN_NAMESPACEtemplate < class R_ >class RayH2{    typedef typename R_::FT                   FT;    typedef typename R_::RT                   RT;    typedef typename R_::Point_2              Point_2;    typedef typename R_::Direction_2          Direction_2;    typedef typename R_::Line_2               Line_2;    typedef typename R_::Vector_2             Vector_2;    typedef Twotuple<Point_2>                        Rep;    typedef typename R_::template Handle<Rep>::type  Base;    Base base;public:    typedef R_                                             R;    RayH2() {}    RayH2( const Point_2& sp, const Point_2& secondp)      : base(sp, secondp) {}    RayH2( const Point_2& sp, const Direction_2& d)      : base(sp, sp + d.to_vector()) {}    RayH2( const Point_2& sp, const Vector_2& v)      : base(sp, sp + v) {}    RayH2( const Point_2& sp, const Line_2& l)      : base(sp, sp + l.to_vector()) {}    bool    operator==(const RayH2<R>& r) const;    bool    operator!=(const RayH2<R>& r) const;    const Point_2 & start() const;    const Point_2 & source() const;    const Point_2 & second_point() const;    Point_2     point(int i) const;    Direction_2    direction() const;    Vector_2       to_vector() const;    Line_2         supporting_line() const;    RayH2<R>       opposite() const;    bool    is_horizontal() const;    bool    is_vertical() const;    bool    has_on(const Point_2& p) const;    bool    collinear_has_on(const Point_2& p) const;    bool    is_degenerate() const;};template < class R >inlineconst typename RayH2<R>::Point_2 &RayH2<R>::source() const{ return get(base).e0; }template < class R >inlineconst typename RayH2<R>::Point_2 &RayH2<R>::start() const{ return source(); }template < class R >CGAL_KERNEL_INLINEtypename RayH2<R>::Vector_2RayH2<R>::to_vector() const{  CGAL_kernel_precondition( !is_degenerate() );  return second_point() - start();}template < class R >CGAL_KERNEL_INLINEtypename RayH2<R>::Direction_2RayH2<R>::direction() const{  CGAL_kernel_precondition( !is_degenerate() );  return Direction_2( second_point() - start() );}template < class R >inlineconst typename RayH2<R>::Point_2 &RayH2<R>::second_point() const{  CGAL_kernel_precondition( !is_degenerate() );  return get(base).e1;}template < class R >CGAL_KERNEL_INLINEtypename RayH2<R>::Point_2RayH2<R>::point(int i) const{  CGAL_kernel_precondition( !is_degenerate() );  CGAL_kernel_precondition( i>= 0 );  Vector_2 v = direction().to_vector();  return start() + RT(i) * v;}template < class R >inlinetypename RayH2<R>::Line_2RayH2<R>::supporting_line() const{  CGAL_kernel_precondition( !is_degenerate() );  return Line_2(*this);}template < class R >inlineRayH2<R>RayH2<R>::opposite() const{ return RayH2<R>( start(), - direction() ); }template < class R >CGAL_KERNEL_INLINEboolRayH2<R>::is_horizontal() const{  return start().hy()*second_point().hw() == second_point().hy()*start().hw();}template < class R >CGAL_KERNEL_INLINEboolRayH2<R>::is_vertical() const{  return start().hx()*second_point().hw() == second_point().hx()*start().hw();}template < class R >CGAL_KERNEL_INLINEboolRayH2<R>::has_on(const typename RayH2<R>::Point_2& p) const{  return p == start() || Direction_2(p - start()) == direction();}template < class R >CGAL_KERNEL_INLINEboolRayH2<R>::is_degenerate() const{ return start() == get(base).e1; }template < class R >inlineboolRayH2<R>::collinear_has_on(const typename RayH2<R>::Point_2& p) const{ return has_on(p); }template < class R >CGAL_KERNEL_INLINEboolRayH2<R>::operator==(const RayH2<R>& r) const{ return ( (start() == r.start() )&&( direction() == r.direction() ) ); }template < class R >inlineboolRayH2<R>::operator!=( const RayH2<R>& r) const{ return !(*this == r); }CGAL_END_NAMESPACE#endif // CGAL_RAYH2_H

⌨️ 快捷键说明

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