コード例 #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
ファイル: LAZBinarySource.cs プロジェクト: jdauie/cloudae
 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
ファイル: LAZFile.cs プロジェクト: PCLC7Z2/cloudae
        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;
		}