| 132 | |
| 133 | |
| 134 | void TerrasolidReader::ready(PointTableRef) |
| 135 | { |
| 136 | m_istream.reset(new IStream(m_filename)); |
| 137 | // Skip to the beginning of points. |
| 138 | m_istream->seek(56); |
| 139 | m_index = 0; |
| 140 | } |
| 141 | |
| 142 | |
| 143 | point_count_t TerrasolidReader::read(PointViewPtr view, point_count_t count) |