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

Go to the source code of this file.

Classes

class  Aff_transformation_3< R_ >
 

Functions

template<class R >
std::ostream & operator<< (std::ostream &os, const CGAL::Aff_transformation_3< R > &t)
 
template<class R >
std::istream & operator>> (std::istream &is, CGAL::Aff_transformation_3< R > &t)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  os,
const CGAL::Aff_transformation_3< R > &  t 
)

Definition at line 206 of file Aff_transformation_3.h.

207 {
208  typedef typename R::Aff_transformation_3_base RAff_transformation_3;
209  return os << static_cast<const RAff_transformation_3&>(t);
210 }
std::istream& operator>> ( std::istream &  is,
CGAL::Aff_transformation_3< R > &  t 
)

Definition at line 216 of file Aff_transformation_3.h.

217 {
218  typedef typename R::Aff_transformation_3_base RAff_transformation_3;
219  return is >> static_cast<const RAff_transformation_3&>(t);
220 }