コード例 #1
0
 public MipFieldValues(MipFieldValues other) : this(msclPINVOKE.new_MipFieldValues__SWIG_1(MipFieldValues.getCPtr(other)), true)
 {
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #2
0
ファイル: Quaternion.cs プロジェクト: stephen4180/MSCL_Copy
 public Quaternion(MipFieldValues data) : this(msclPINVOKE.new_Quaternion__SWIG_2(MipFieldValues.getCPtr(data)), true)
 {
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #3
0
 public MipFieldValuesEnumerator(MipFieldValues collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
コード例 #4
0
 public MipCommandParamPair(MipTypes.Command first, MipFieldValues second) : this(msclPINVOKE.new_MipCommandParamPair__SWIG_1((int)first, MipFieldValues.getCPtr(second)), true)
 {
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #5
0
ファイル: Matrix_3x3.cs プロジェクト: stephen4180/MSCL_Copy
 public Matrix_3x3(MipFieldValues data) : this(msclPINVOKE.new_Matrix_3x3__SWIG_1(MipFieldValues.getCPtr(data)), true)
 {
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #6
0
 public void SetRange(int index, MipFieldValues values)
 {
     msclPINVOKE.MipFieldValues_SetRange(swigCPtr, index, MipFieldValues.getCPtr(values));
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #7
0
 public void AddRange(MipFieldValues values)
 {
     msclPINVOKE.MipFieldValues_AddRange(swigCPtr, MipFieldValues.getCPtr(values));
     if (msclPINVOKE.SWIGPendingException.Pending)
     {
         throw msclPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #8
0
ファイル: Quaternion.cs プロジェクト: stephen4180/MSCL_Copy
        public MipFieldValues asMipFieldValues()
        {
            MipFieldValues ret = new MipFieldValues(msclPINVOKE.Quaternion_asMipFieldValues(swigCPtr), true);

            if (msclPINVOKE.SWIGPendingException.Pending)
            {
                throw msclPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #9
0
        public static PositionReferenceConfiguration fromResponseData(MipFieldValues resData)
        {
            PositionReferenceConfiguration ret = new PositionReferenceConfiguration(msclPINVOKE.PositionReferenceConfiguration_fromResponseData(MipFieldValues.getCPtr(resData)), true);

            if (msclPINVOKE.SWIGPendingException.Pending)
            {
                throw msclPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #10
0
        public static MipFieldValues Repeat(Value value, int count)
        {
            global::System.IntPtr cPtr = msclPINVOKE.MipFieldValues_Repeat(Value.getCPtr(value), count);
            MipFieldValues        ret  = (cPtr == global::System.IntPtr.Zero) ? null : new MipFieldValues(cPtr, true);

            if (msclPINVOKE.SWIGPendingException.Pending)
            {
                throw msclPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #11
0
        public MipFieldValues GetRange(int index, int count)
        {
            global::System.IntPtr cPtr = msclPINVOKE.MipFieldValues_GetRange(swigCPtr, index, count);
            MipFieldValues        ret  = (cPtr == global::System.IntPtr.Zero) ? null : new MipFieldValues(cPtr, true);

            if (msclPINVOKE.SWIGPendingException.Pending)
            {
                throw msclPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #12
0
 internal static global::System.Runtime.InteropServices.HandleRef getCPtr(MipFieldValues obj)
 {
     return((obj == null) ? new global::System.Runtime.InteropServices.HandleRef(null, global::System.IntPtr.Zero) : obj.swigCPtr);
 }