Exemple #1
0
        /// <summary>
        /// Reads the next available point on the LASReaderH instance.
        /// </summary>
        /// <returns>true if we have next point</returns>
        public bool GetNextPoint()
        {
            IntPtr pointer = CAPI.LASReader_GetNextPoint(hReader);

            if (IntPtr.Zero != pointer)
            {
                laspoint = new LASPoint(pointer);
                return(true);
            }
            else
            {
                return(false);
            }
        }