Go to the source code of this file.
|
template<class R > |
std::ostream & | operator<< (std::ostream &os, const CGAL::Aff_transformation_2< R > &t) |
|
template<class R > |
std::istream & | operator>> (std::istream &is, CGAL::Aff_transformation_2< R > &t) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const CGAL::Aff_transformation_2< R > & |
t |
|
) |
| |
Definition at line 238 of file Aff_transformation_2.h.
240 typedef typename R::Aff_transformation_2_base RAff_transformation_2;
241 return os << (
const RAff_transformation_2&)t;
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
CGAL::Aff_transformation_2< R > & |
t |
|
) |
| |
Definition at line 248 of file Aff_transformation_2.h.
250 typedef typename R::Aff_transformation_2_base RAff_transformation_2;
251 return is >> (RAff_transformation_2&)t;