Go to the source code of this file.
|
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) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const CGAL::Aff_transformation_3< R > & |
t |
|
) |
| |
Definition at line 206 of file Aff_transformation_3.h.
208 typedef typename R::Aff_transformation_3_base RAff_transformation_3;
209 return os << static_cast<const RAff_transformation_3&>(t);
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
CGAL::Aff_transformation_3< R > & |
t |
|
) |
| |
Definition at line 216 of file Aff_transformation_3.h.
218 typedef typename R::Aff_transformation_3_base RAff_transformation_3;
219 return is >>
static_cast<const RAff_transformation_3&
>(t);