| 858 | |
| 859 | |
| 860 | void LasWriter::writeLazPerfBuf(char *pos, size_t pointLen, point_count_t numPts) |
| 861 | { |
| 862 | for (point_count_t i = 0; i < numPts; i++) |
| 863 | { |
| 864 | m_compressor->compress(pos); |
| 865 | pos += pointLen; |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | |
| 870 | bool LasWriter::fillPointBuf(PointRef& point, LeInserter& ostream) |