Merge branch 'PLY_double_patch' into 'master'

PLY Reader: Fix reading doubles from PLY, missing cast (Thanks to Leo Walsh for the patch)

See merge request OpenMesh/OpenMesh!220
This commit is contained in:
Jan Möbius
2019-05-15 14:07:39 +02:00
2 changed files with 12 additions and 0 deletions

View File

@@ -21,6 +21,12 @@
<li>PropertyManager: add hasProperty function</li>
</ul>
<b>IO</b>
<ul>
<li>PLY Reader: Fix reading doubles from PLY, missing cast (Thanks to Leo Walsh for the patch)</li>
</ul>
<b>Build System</b>
<ul>
<li>Generate OpenMeshConfig.cmake (Thanks to Thibault Payet for the patch)</li>

View File

@@ -804,6 +804,12 @@ void _PLYReader_::readValue(ValueType _type, std::istream& _in, float& _value) c
restore(_in, tmp, options_.check(Options::MSB));
_value = tmp;
break;
case ValueTypeDOUBLE:
case ValueTypeFLOAT64:
double dtmp;
readValue(_type, _in, dtmp);
_value = static_cast<float>(dtmp);
break;
default:
_value = 0.0;
std::cerr << "unsupported conversion type to float: " << _type << std::endl;