// ====================================================================== // // Copyright (c) 1999 The CGAL Consortium // // This software and related documentation is part of an INTERNAL release // of the Computational Geometry Algorithms Library (CGAL). It is not // intended for general use. // // ---------------------------------------------------------------------- // // release : // release_date : // // file : Line_2.h // package : _2 // revision : $Revision$ // revision_date : $Date$ // author(s) : Andreas Fabri // // coordinator : MPI, Saarbruecken () // ====================================================================== #ifndef CGAL_LINE_2_H #define CGAL_LINE_2_H #ifndef CGAL_REP_CLASS_DEFINED #error no representation class defined #endif #if defined CGAL_HOMOGENEOUS_H || defined CGAL_SIMPLE_HOMOGENEOUS_H #include #endif #if defined CGAL_CARTESIAN_H || defined CGAL_SIMPLE_CARTESIAN_H #include #endif #include #include #include CGAL_BEGIN_NAMESPACE template class Line_2 : public R_::Line_2_base { public: typedef R_ R; typedef typename R::RT RT; typedef typename R::FT FT; typedef typename R::Line_2_base RLine_2; Line_2() : RLine_2() {} ~Line_2() {} Line_2(const CGAL::Line_2 &l) : RLine_2(static_cast(l)) {} Line_2(const CGAL::Point_2 &p, const CGAL::Point_2 &q) : RLine_2(p,q) {} Line_2(const RT &a, const RT &b, const RT &c) : RLine_2(a,b,c) {} Line_2(const RLine_2& l) // conversion impl -> interface class : RLine_2(l) {} Line_2(const CGAL::Segment_2& s) : RLine_2(s) {} Line_2(const CGAL::Ray_2& r) : RLine_2(r) {} Line_2(const CGAL::Point_2 &p, const CGAL::Direction_2 &d) : RLine_2(p,d) {} bool operator==(const CGAL::Line_2 &l) const { return RLine_2::operator==(l); } bool operator!=(const CGAL::Line_2 &l) const { return !(*this == l); } RT a() const { return RLine_2::a(); } RT b() const { return RLine_2::b(); } RT c() const { return RLine_2::c(); } FT x_at_y(const FT &y) const { return RLine_2::x_at_y(y); } FT y_at_x(const FT &x) const { return RLine_2::y_at_x(x); } CGAL::Line_2 perpendicular(const CGAL::Point_2 &p) const { return RLine_2::perpendicular(p); } CGAL::Line_2 opposite() const { return RLine_2::opposite(); } CGAL::Point_2 point(int i) const { return RLine_2::point(i); } CGAL::Point_2 projection(const CGAL::Point_2 &p) const { return RLine_2::projection(p); } CGAL::Point_2 point() const { return RLine_2::point(); } CGAL::Direction_2 direction() const { return RLine_2::direction(); } Oriented_side oriented_side(const CGAL::Point_2 &p) const { return RLine_2::oriented_side(p); } bool has_on(const CGAL::Point_2 &p) const { return RLine_2::has_on_boundary(p); } bool has_on_boundary(const CGAL::Point_2 &p) const { return RLine_2::has_on_boundary(p); } bool has_on_positive_side(const CGAL::Point_2 &p) const { return RLine_2::has_on_positive_side(p); } bool has_on_negative_side(const CGAL::Point_2 &p) const { return RLine_2::has_on_negative_side(p); } bool is_horizontal() const { return RLine_2::is_horizontal(); } bool is_vertical() const { return RLine_2::is_vertical(); } bool is_degenerate() const { return RLine_2::is_degenerate(); } CGAL::Line_2 transform(const CGAL::Aff_transformation_2 &t) const { return RLine_2::transform(t); } }; #ifndef CGAL_NO_OSTREAM_INSERT_LINE_2 template < class R > std::ostream & operator<<(std::ostream &os, const Line_2 &l) { typedef typename R::Line_2_base RLine_2; return os << static_cast(l); } #endif // CGAL_NO_OSTREAM_INSERT_LINE_2 #ifndef CGAL_NO_ISTREAM_EXTRACT_LINE_2 template < class R > std::istream & operator>>(std::istream &is, Line_2 &p) { typedef typename R::Line_2_base RLine_2; return is >> static_cast(p); } #endif // CGAL_NO_ISTREAM_EXTRACT_LINE_2 CGAL_END_NAMESPACE #endif // CGAL_LINE_2_H