示例#1
0
        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);
        }
示例#2
0
 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;
 }
示例#3
0
        protected override IPointCloudBinarySource CreateBinaryWrapper()
        {
            var source = new LAZBinarySource(this, Count, Extent, Header.Quantization, PointDataOffset, PointSizeBytes);

            return(source);
        }
示例#4
0
		protected override IPointCloudBinarySource CreateBinaryWrapper()
		{
			var source = new LAZBinarySource(this, Count, Extent, Header.Quantization, PointDataOffset, PointSizeBytes);

			return source;
		}