Go to the source code of this file.
|
template<class R > |
std::ostream & | operator<< (std::ostream &os, const Ray_3< R > &r) |
|
template<class R > |
std::istream & | operator>> (std::istream &is, Ray_3< R > &r) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Ray_3< R > & |
r |
|
) |
| |
Definition at line 131 of file Ray_3.h.
133 typedef typename R::Ray_3_base RRay_3;
134 return os << (
const RRay_3& )r;
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Ray_3< R > & |
r |
|
) |
| |
Definition at line 141 of file Ray_3.h.
143 typedef typename R::Ray_3_base RRay_3;
144 return is >> (RRay_3& )r;