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

Go to the source code of this file.

Classes

class  Segment_3< R, T >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const Segment_3< R > &s)
 
template<class R >
std::istream & operator>> (std::istream &is, Segment_3< R > &s)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Segment_3< R > &  s 
)

Definition at line 142 of file Segment_3.h.

References s.

143 {
144  typedef typename R::Segment_3_base RSegment_3;
145  return os << (const RSegment_3& )s;
146 }
std::istream& operator>> ( std::istream &  is,
Segment_3< R > &  s 
)

Definition at line 152 of file Segment_3.h.

153 {
154  typedef typename R::Segment_3_base RSegment_3;
155  return is >> (RSegment_3& )s;
156 }