public override IPointCloudBinarySource CreateSegment(long pointIndex, long pointCount) { long offset = PointDataOffset + pointIndex * PointSizeBytes; var segment = new LAZBinarySource(m_handler, pointCount, Extent, Quantization, offset, PointSizeBytes); return(segment); }
public override IPointCloudBinarySource CreateSegment(long pointIndex, long pointCount) { long offset = PointDataOffset + pointIndex * PointSizeBytes; var segment = new LAZBinarySource(m_handler, pointCount, Extent, Quantization, offset, PointSizeBytes); return segment; }
protected override IPointCloudBinarySource CreateBinaryWrapper() { var source = new LAZBinarySource(this, Count, Extent, Header.Quantization, PointDataOffset, PointSizeBytes); return(source); }
protected override IPointCloudBinarySource CreateBinaryWrapper() { var source = new LAZBinarySource(this, Count, Extent, Header.Quantization, PointDataOffset, PointSizeBytes); return source; }