コード例 #1
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
 public aiAnimationVector(aiAnimationVector other) : this(AssimpPINVOKE.new_aiAnimationVector__SWIG_1(aiAnimationVector.getCPtr(other)), true)
 {
     if (AssimpPINVOKE.SWIGPendingException.Pending)
     {
         throw AssimpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #2
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
 public aiAnimationVectorEnumerator(aiAnimationVector collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
コード例 #3
0
ファイル: aiScene.cs プロジェクト: HBDLP/LearnOpenGL
    private aiAnimationVector GetmAnimations()
    {
        IntPtr            cPtr = AssimpPINVOKE.aiScene_GetmAnimations(swigCPtr);
        aiAnimationVector ret  = (cPtr == IntPtr.Zero) ? null : new aiAnimationVector(cPtr, true);

        return(ret);
    }
コード例 #4
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
 public void SetRange(int index, aiAnimationVector values)
 {
     AssimpPINVOKE.aiAnimationVector_SetRange(swigCPtr, index, aiAnimationVector.getCPtr(values));
     if (AssimpPINVOKE.SWIGPendingException.Pending)
     {
         throw AssimpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #5
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
    public static aiAnimationVector Repeat(aiAnimation value, int count)
    {
        IntPtr            cPtr = AssimpPINVOKE.aiAnimationVector_Repeat(aiAnimation.getCPtr(value), count);
        aiAnimationVector ret  = (cPtr == IntPtr.Zero) ? null : new aiAnimationVector(cPtr, true);

        if (AssimpPINVOKE.SWIGPendingException.Pending)
        {
            throw AssimpPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
コード例 #6
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
    public aiAnimationVector GetRange(int index, int count)
    {
        IntPtr            cPtr = AssimpPINVOKE.aiAnimationVector_GetRange(swigCPtr, index, count);
        aiAnimationVector ret  = (cPtr == IntPtr.Zero) ? null : new aiAnimationVector(cPtr, true);

        if (AssimpPINVOKE.SWIGPendingException.Pending)
        {
            throw AssimpPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
コード例 #7
0
ファイル: aiAnimationVector.cs プロジェクト: mshimura/CS148
 internal static HandleRef getCPtr(aiAnimationVector obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }