Exemple #1
0
 public void WritePointSetGroup(IPointSetGroup pointSetGroup, int sliceId)
 {
     foreach (var pointSet in pointSetGroup.PointSets)
     {
         WritePointSet(pointSet, sliceId);
     }
 }
Exemple #2
0
 public void WritePointSetGroup(IPointSetGroup pointSetGroup)
 {
     foreach (var pointSet in pointSetGroup.PointSets)
     {
         foreach (var point in pointSet)
         {
             WritePoint(point);
         }
         _streamWriter.Flush();
         _bufferedStream.Flush();
         _fileStream.Flush();
     }
     _streamWriter.Flush();
 }
Exemple #3
0
 public void WritePointSetGroup(IPointSetGroup pointSetGroup)
 {
     WritePointSetGroup(pointSetGroup, SliceId);
 }
 public void WritePointSetGroup(IPointSetGroup pointSetGroup)
 {
     throw new NotImplementedException();
 }