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)) { switch(is.iword(IO::mode)) {
case IO::ASCII : case IO::ASCII :
is >> iformat(xmin) >> iformat(ymin) >> iformat(xmax) >> iformat(ymax); is >> iformat(xmin) >> iformat(ymin) >> iformat(xmax) >> iformat(ymax);
break; break;
case IO::BINARY : case IO::BINARY :
read(is, xmin); read(is, xmin);

View File

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

View File

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

View File

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

View File

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

View File

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