Simply3DScan
IPointWriter.cs
Go to the documentation of this file.
1 using SharedObjects;
2 
3 namespace PointWriter
4 {
8  public interface IPointWriter
9  {
14  void AddPoint(ColorPoint3D point);
19  void Write(string fileName);
20  }
21 }
void Write(string fileName)
Writes to specified file name.
void AddPoint(ColorPoint3D point)
Adds the point.
Interface for writing points to file
Definition: IPointWriter.cs:8