#include <iostream>
Go to the source code of this file.
◆ operator<<() [1/2]
std::ostream & operator<< |
( |
std::ostream & |
file, |
|
|
const linexi2 & |
l |
|
) |
| |
Definition at line 70 of file linexi2.cpp.
70 {
71 Ifile <<
"linexi2_coor: qlr=" << l.
qlr <<
'\n';
74 Ifile <<
"a=" << l.
a <<
" b=" << l.
b <<
'\n';
75 int n;
76 for (n = 0; n < l.
qlr; n++)
77 Ifile <<
"n=" << n <<
" x=" << l.
ax[n] <<
" y=" << l.
ay[n] <<
'\n';
78 return file;
79}
◆ operator<<() [2/2]
std::ostream & operator<< |
( |
std::ostream & |
file, |
|
|
const linexi2_coor & |
l |
|
) |
| |
Definition at line 28 of file linexi2.cpp.
28 {
30 <<
" Dx=" << l.
Dx <<
'\n';
31 int n;
32 for (n = 0; n < l.
qlr; n++)
33 Ifile <<
"n=" << n <<
" x=" << l.
ax[n] <<
'\n';
34 return file;
35}