mirror of https://github.com/CGAL/cgal
correct type y= by z=
This commit is contained in:
parent
c99974d817
commit
49d3fd8430
|
|
@ -114,7 +114,7 @@ public:
|
|||
I_Binary_read_big_endian_float32( m_in, fw);
|
||||
x = int( fx / fw);
|
||||
y = int( fy / fw);
|
||||
y = int( fz / fw);
|
||||
z = int( fz / fw);
|
||||
} else {
|
||||
x = int(fx);
|
||||
y = int(fy);
|
||||
|
|
@ -127,7 +127,7 @@ public:
|
|||
m_in >> fx >> fy >> fz >> fw;
|
||||
x = int( fx / fw);
|
||||
y = int( fy / fw);
|
||||
y = int( fz / fw);
|
||||
z = int( fz / fw);
|
||||
} else {
|
||||
double d;
|
||||
m_in >> d;
|
||||
|
|
@ -245,7 +245,7 @@ public:
|
|||
I_Binary_read_big_endian_float32( m_in, fw);
|
||||
x = fx / fw;
|
||||
y = fy / fw;
|
||||
y = fz / fw;
|
||||
z = fz / fw;
|
||||
} else {
|
||||
x = fx;
|
||||
y = fy;
|
||||
|
|
@ -257,7 +257,7 @@ public:
|
|||
m_in >> fx >> fy >> fz >> fw;
|
||||
x = fx / fw;
|
||||
y = fy / fw;
|
||||
y = fz / fw;
|
||||
z = fz / fw;
|
||||
} else
|
||||
m_in >> x >> y >> z;
|
||||
}
|
||||
|
|
@ -276,7 +276,7 @@ public:
|
|||
I_Binary_read_big_endian_float32( m_in, fw);
|
||||
x = int( fx / fw);
|
||||
y = int( fy / fw);
|
||||
y = int( fz / fw);
|
||||
z = int( fz / fw);
|
||||
} else {
|
||||
x = int(fx);
|
||||
y = int(fy);
|
||||
|
|
@ -288,7 +288,7 @@ public:
|
|||
m_in >> fx >> fy >> fz >> fw;
|
||||
x = int( fx / fw);
|
||||
y = int( fy / fw);
|
||||
y = int( fz / fw);
|
||||
z = int( fz / fw);
|
||||
} else {
|
||||
double d;
|
||||
m_in >> d;
|
||||
|
|
|
|||
Loading…
Reference in New Issue