Rocstar  1.0
Rocstar multiphysics simulation application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Line_2.h File Reference
#include <CGAL/predicates_on_points_2.h>
#include <CGAL/Vector_2.h>
#include <CGAL/Segment_2.h>
#include <CGAL/Ray_2.h>
Include dependency graph for Line_2.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  Line_2< R, T >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const Line_2< R > &l)
 
template<class R >
std::istream & operator>> (std::istream &is, Line_2< R > &p)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Line_2< R > &  l 
)

Definition at line 251 of file Line_2.h.

252 {
253  typedef typename R::Line_2_base RLine_2;
254  return os << (const RLine_2&)l;
255 }
std::istream& operator>> ( std::istream &  is,
Line_2< R > &  p 
)

Definition at line 261 of file Line_2.h.

262 {
263  typedef typename R::Line_2_base RLine_2;
264  return is >> (RLine_2&)p;
265 }