Go to the source code of this file.
|
template<class R > |
std::ostream & | operator<< (std::ostream &os, const Ray_2< R > &r) |
|
template<class R > |
std::istream & | operator>> (std::istream &is, Ray_2< R > &r) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Ray_2< R > & |
r |
|
) |
| |
Definition at line 169 of file Ray_2.h.
171 typedef typename R::Ray_2_base RRay_2;
172 return os << (
const RRay_2&)r;
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Ray_2< R > & |
r |
|
) |
| |
Definition at line 179 of file Ray_2.h.
181 typedef typename R::Ray_2_base RRay_2;
182 return is >> (RRay_2&)r;