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

Go to the source code of this file.

Classes

class  Direction_3< R, T >
 

Functions

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

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const Direction_3< R > &  d 
)

Definition at line 140 of file Direction_3.h.

References d.

141 {
142  typedef typename R::Direction_3_base RDirection_3;
143  return os << (const RDirection_3& )d; }
std::istream& operator>> ( std::istream &  is,
Direction_3< R > &  p 
)

Definition at line 149 of file Direction_3.h.

150 {
151  typedef typename R::Direction_3_base RDirection_3;
152  return is >> (RDirection_3& )p; }