コード例 #1
0
 public void init(PointSource src, IO io, PointInfo fieldInfo)
 {
     LidarDSDKPINVOKE.TXTPointWriter_init__SWIG_3(swigCPtr, PointSource.getCPtr(src), IO.getCPtr(io), PointInfo.getCPtr(fieldInfo));
     if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
     {
         throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #2
0
 public virtual void writeBegin(PointInfo pointInfo)
 {
     LidarDSDKPINVOKE.SimplePointWriter_writeBegin(swigCPtr, PointInfo.getCPtr(pointInfo));
     if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
     {
         throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #3
0
ファイル: PointInfo.cs プロジェクト: caller/OMC
        public bool Equals(PointInfo rhs)
        {
            bool ret = LidarDSDKPINVOKE.PointInfo_Equals(swigCPtr, PointInfo.getCPtr(rhs));

            if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
            {
                throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #4
0
        public virtual bool supportedChannels(PointInfo inputPointInfo, PointInfo supportedPointInfo)
        {
            bool ret = LidarDSDKPINVOKE.PointWriter_supportedChannels(swigCPtr, PointInfo.getCPtr(inputPointInfo), PointInfo.getCPtr(supportedPointInfo));

            if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
            {
                throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #5
0
        public virtual long write(Bounds bounds, double fraction, PointInfo pointInfo, ProgressDelegate arg3)
        {
            long ret = LidarDSDKPINVOKE.PointWriter_write(swigCPtr, Bounds.getCPtr(bounds), fraction, PointInfo.getCPtr(pointInfo), ProgressDelegate.getCPtr(arg3));

            if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
            {
                throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #6
0
ファイル: PointSource.cs プロジェクト: caller/OMC
        public virtual PointInfo getPointInfo()
        {
            IntPtr cPtr = LidarDSDKPINVOKE.PointSource_getPointInfo(swigCPtr);

            if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
            {
                throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
            }
            PointInfo ret = null;

            if (cPtr != IntPtr.Zero)
            {
                ret = new PointInfo(cPtr, false);
                ret.setOwnerObject(this);
            }
            return(ret);
        }
コード例 #7
0
ファイル: PointSource.cs プロジェクト: caller/OMC
        public virtual PointIterator createIterator(Bounds bounds, double fraction, PointInfo pointInfo, ProgressDelegate arg3)
        {
            IntPtr cPtr = LidarDSDKPINVOKE.PointSource_createIterator(swigCPtr, Bounds.getCPtr(bounds), fraction, PointInfo.getCPtr(pointInfo), ProgressDelegate.getCPtr(arg3));

            if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
            {
                throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
            }
            PointIterator ret = null;

            if (cPtr != IntPtr.Zero)
            {
                ret = new PointIterator(cPtr, true);
                ret.setProgressDelegateRef(arg3);
            }
            return(ret);
        }
コード例 #8
0
ファイル: PointInfo.cs プロジェクト: caller/OMC
 public static HandleRef getCPtr(PointInfo obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }
コード例 #9
0
 public static void parseFormat(string format, PointInfo fieldInfo, PointInfo pointInfo)
 {
     LidarDSDKPINVOKE.TXTPointReader_parseFormat__SWIG_1(format, PointInfo.getCPtr(fieldInfo), PointInfo.getCPtr(pointInfo));
     if (LidarDSDKPINVOKE.SWIGPendingException.Pending)
     {
         throw LidarDSDKPINVOKE.SWIGPendingException.Retrieve();
     }
 }