| 372 | |
| 373 | |
| 374 | bool PlyReader::readProperty(Property *prop, PointRef& point) |
| 375 | { |
| 376 | if (!m_stream->good()) |
| 377 | return false; |
| 378 | prop->read(m_stream, m_format, point); |
| 379 | return true; |
| 380 | } |
| 381 | |
| 382 | |
| 383 | void PlyReader::SimpleProperty::read(std::istream *stream, |