| 438 | |
| 439 | |
| 440 | void PlyReader::readElement(Element& elt, PointRef& point) |
| 441 | { |
| 442 | for (auto& prop : elt.m_properties) |
| 443 | if (!readProperty(prop.get(), point)) |
| 444 | throwError("Error reading data for point/element " + |
| 445 | std::to_string(point.pointId()) + "."); |
| 446 | } |
| 447 | |
| 448 | |
| 449 | void PlyReader::ready(PointTableRef table) |