Go to the source code of this file.
|
template<class FT > |
std::ostream & | operator<< (std::ostream &os, const PlaneS3< FT > &p) |
|
template<class FT > |
std::istream & | operator>> (std::istream &is, PlaneS3< FT > &p) |
|
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const PlaneS3< FT > & |
p |
|
) |
| |
Definition at line 414 of file PlaneS3.h.
References IO::ASCII, IO::BINARY, IO::mode, and write().
418 return os << p.
a() <<
' ' << p.
b() <<
' ' << p.
c() <<
' ' << p.
d();
426 os <<
"PlaneS3(" << p.
a() <<
", " << p.
b() <<
", ";
427 os << p.
c() <<
", " << p.
d() <<
")";
void write(std::ostream &os, const T &t, const io_Read_write &)
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
PlaneS3< FT > & |
p |
|
) |
| |
Definition at line 435 of file PlaneS3.h.
References IO::ASCII, IO::BINARY, d, IO::mode, and read().
440 is >> a >> b >> c >>
d;
450 cerr <<
"Stream must be in ascii or binary mode" << endl;
void read(std::istream &is, T &t, const io_Read_write &)