Esempio n. 1
0
        /// <summary>
        /// Copy a LASPoint object creating a new one.
        /// </summary>
        /// <returns>a new LASPoint instance copied.</returns>
        public LASPoint Copy()
        {
            LASPointH laspointhTemp = CAPI.LASPoint_Copy(hPoint);

            return(new LASPoint(laspointhTemp));
        }