Ejemplo n.º 1
0
 /// <summary>
 /// test is the LASPoint is Valid
 /// </summary>
 /// <returns>true is is valid</returns>
 public bool IsValid()
 {
     if (CAPI.LASPoint_IsValid(hPoint) == 1)
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }