Exemplo n.º 1
0
 public aiMeshAnimVector(aiMeshAnimVector other) : this(AssimpPINVOKE.new_aiMeshAnimVector__SWIG_1(aiMeshAnimVector.getCPtr(other)), true)
 {
     if (AssimpPINVOKE.SWIGPendingException.Pending)
     {
         throw AssimpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Exemplo n.º 2
0
 public aiMeshAnimVectorEnumerator(aiMeshAnimVector collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
Exemplo n.º 3
0
    private aiMeshAnimVector GetmMeshChannels()
    {
        IntPtr           cPtr = AssimpPINVOKE.aiAnimation_GetmMeshChannels(swigCPtr);
        aiMeshAnimVector ret  = (cPtr == IntPtr.Zero) ? null : new aiMeshAnimVector(cPtr, true);

        return(ret);
    }
Exemplo n.º 4
0
 public void SetRange(int index, aiMeshAnimVector values)
 {
     AssimpPINVOKE.aiMeshAnimVector_SetRange(swigCPtr, index, aiMeshAnimVector.getCPtr(values));
     if (AssimpPINVOKE.SWIGPendingException.Pending)
     {
         throw AssimpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
Exemplo n.º 5
0
    public static aiMeshAnimVector Repeat(aiMeshAnim value, int count)
    {
        IntPtr           cPtr = AssimpPINVOKE.aiMeshAnimVector_Repeat(aiMeshAnim.getCPtr(value), count);
        aiMeshAnimVector ret  = (cPtr == IntPtr.Zero) ? null : new aiMeshAnimVector(cPtr, true);

        if (AssimpPINVOKE.SWIGPendingException.Pending)
        {
            throw AssimpPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
Exemplo n.º 6
0
    public aiMeshAnimVector GetRange(int index, int count)
    {
        IntPtr           cPtr = AssimpPINVOKE.aiMeshAnimVector_GetRange(swigCPtr, index, count);
        aiMeshAnimVector ret  = (cPtr == IntPtr.Zero) ? null : new aiMeshAnimVector(cPtr, true);

        if (AssimpPINVOKE.SWIGPendingException.Pending)
        {
            throw AssimpPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
Exemplo n.º 7
0
 internal static HandleRef getCPtr(aiMeshAnimVector obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }