|
@@ -240,9 +240,6 @@ std::istream& operator>>(std::istream& is, CurveBipoint& input)
|
|
|
for (int i = 0; i < 2; i++)
|
|
|
{
|
|
|
is >> x >> y >> z;
|
|
|
- // std::cout << "x: " << std::hex << x << std::dec << std::endl;
|
|
|
- // std::cout << "y: " << std::hex << y << std::dec << std::endl;
|
|
|
- // std::cout << "z: " << std::hex << z << std::dec << std::endl;
|
|
|
fpe_set(input[i]->m_x, x.data);
|
|
|
fpe_set(input[i]->m_y, y.data);
|
|
|
fpe_set(input[i]->m_z, z.data);
|