Go to the source code of this file.
|
template<class R > |
std::ostream & | operator<< (std::ostream &os, const Line_2< R > &l) |
|
template<class R > |
std::istream & | operator>> (std::istream &is, Line_2< R > &p) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const Line_2< R > & |
l |
|
) |
| |
Definition at line 251 of file Line_2.h.
253 typedef typename R::Line_2_base RLine_2;
254 return os << (
const RLine_2&)l;
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
Line_2< R > & |
p |
|
) |
| |
Definition at line 261 of file Line_2.h.
263 typedef typename R::Line_2_base RLine_2;
264 return is >> (RLine_2&)p;