Restore the initial indentation incorrectly modified by this branch

This commit is contained in:
Laurent Rineau 2014-12-04 13:42:17 +01:00
parent 80784a3292
commit af90b1d6bc
7 changed files with 14 additions and 14 deletions

View File

@ -193,7 +193,7 @@ operator>>(std::istream &is, Bbox_2 &b)
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> iformat(xmin) >> iformat(ymin) >> iformat(xmax) >> iformat(ymax);
is >> iformat(xmin) >> iformat(ymin) >> iformat(xmax) >> iformat(ymax);
break;
case IO::BINARY :
read(is, xmin);

View File

@ -273,7 +273,7 @@ extract(std::istream& is, Circle_2<R>& c)
int o;
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> center >> iformat(squared_radius) >> o;
is >> center >> iformat(squared_radius) >> o;
break;
case IO::BINARY :
is >> center;

View File

@ -213,7 +213,7 @@ extract(std::istream& is, Direction_3<R>& d, const Homogeneous_tag&)
switch(is.iword(IO::mode))
{
case IO::ASCII :
is >> iformat(x) >> iformat(y) >> iformat(z);
is >> iformat(x) >> iformat(y) >> iformat(z);
break;
case IO::BINARY :
read(is, x);

View File

@ -262,7 +262,7 @@ extract(std::istream& is, Line_2<R>& l)
typename R::RT a, b, c;
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> iformat(a) >> iformat(b) >> iformat(c);
is >> iformat(a) >> iformat(b) >> iformat(c);
break;
case IO::BINARY :
read(is, a);

View File

@ -258,7 +258,7 @@ operator>>(std::istream &is, Plane_3<R> &p)
typename R::RT a, b, c, d;
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> iformat(a) >> iformat(b) >> iformat(c) >> iformat(d);
is >> iformat(a) >> iformat(b) >> iformat(c) >> iformat(d);
break;
case IO::BINARY :
read(is, a);

View File

@ -246,7 +246,7 @@ extract(std::istream& is, Point_3<R>& p, const Cartesian_tag&)
typename R::FT x, y, z;
switch(is.iword(IO::mode)) {
case IO::ASCII :
is >> iformat(x) >> iformat(y) >> iformat(z);
is >> iformat(x) >> iformat(y) >> iformat(z);
break;
case IO::BINARY :
read(is, x);

View File

@ -203,7 +203,7 @@ public:
m_in >> iformat(d);
z = int(d);
if ( is_homogeneous()) {
m_in >> iformat(d);
m_in >> iformat(d);
w = int(d);
}
}
@ -224,7 +224,7 @@ public:
z /= w;
}
} else {
m_in >> iformat(x) >> iformat(y) >> iformat(z);
m_in >> iformat(x) >> iformat(y) >> iformat(z);
if ( is_homogeneous()) {
float w;
m_in >> iformat(w);
@ -262,7 +262,7 @@ public:
y = fy / fw;
z = fz / fw;
} else
m_in >> iformat(x) >> iformat(y) >> iformat(z);
m_in >> iformat(x) >> iformat(y) >> iformat(z);
}
}
}
@ -316,9 +316,9 @@ public:
if ( is_homogeneous())
I_Binary_read_big_endian_float32( m_in, w);
} else {
m_in >> iformat(x) >> iformat(y) >> iformat(z);
m_in >> iformat(x) >> iformat(y) >> iformat(z);
if ( is_homogeneous())
m_in >> iformat(w);
m_in >> iformat(w);
}
}
}
@ -339,9 +339,9 @@ public:
w = f;
}
} else {
m_in >> iformat(x) >> iformat(y) >> iformat(z);
m_in >> iformat(x) >> iformat(y) >> iformat(z);
if ( is_homogeneous())
m_in >> iformat(w);
m_in >> iformat(w);
}
}
}
@ -370,7 +370,7 @@ public:
m_in >> iformat(d);
z = int(d);
if ( is_homogeneous()) {
m_in >> iformat(d);
m_in >> iformat(d);
w = int(d);
}
}