Exemple #1
0
 /// <summary>
 /// Default constructor of the class
 /// </summary>
 /// <param name="filename">string with the path of the LAS file</param>
 /// <param name="hHeader">LASHeader to add the LAS file</param>
 /// <param name="mode">mode to use the file by LASReadWriteMode enumeration</param>
 public LASWriter(String filename, LASHeader hHeader, LASReadWriteMode mode)
 {
     hwriter = CAPI.LASWriter_Create(filename, hHeader.GetPointer(), (int)mode);
 }