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

Go to the source code of this file.

Classes

class  Line_3< R, T >
 

Functions

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

Function Documentation

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

Definition at line 152 of file Line_3.h.

153 {
154  typedef typename R::Line_3_base RLine_3;
155  return os << (const RLine_3& )l;
156 }
std::istream& operator>> ( std::istream &  is,
Line_3< R > &  p 
)

Definition at line 162 of file Line_3.h.

163 {
164  typedef typename R::Line_3_base RLine_3;
165  is >> ( RLine_3& )p;
166  return is;
167 }