コード例 #1
0
ファイル: SdfIntListOp.cs プロジェクト: feniksa/usd-unity-sdk
 public void SetItems(StdIntVector items, SdfListOpType type)
 {
     UsdCsPINVOKE.SdfIntListOp_SetItems(swigCPtr, StdIntVector.getCPtr(items), (int)type);
     if (UsdCsPINVOKE.SWIGPendingException.Pending)
     {
         throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #2
0
ファイル: SdfIntListOp.cs プロジェクト: feniksa/usd-unity-sdk
 public void SetOrderedItems(StdIntVector items)
 {
     UsdCsPINVOKE.SdfIntListOp_SetOrderedItems(swigCPtr, StdIntVector.getCPtr(items));
     if (UsdCsPINVOKE.SWIGPendingException.Pending)
     {
         throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #3
0
 public void SetRange(int index, StdIntVector values)
 {
     UsdCsPINVOKE.StdIntVector_SetRange(swigCPtr, index, StdIntVector.getCPtr(values));
     if (UsdCsPINVOKE.SWIGPendingException.Pending)
     {
         throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #4
0
ファイル: SdfIntListOp.cs プロジェクト: feniksa/usd-unity-sdk
        public static SdfIntListOp Create(StdIntVector prependedItems)
        {
            SdfIntListOp ret = new SdfIntListOp(UsdCsPINVOKE.SdfIntListOp_Create__SWIG_2(StdIntVector.getCPtr(prependedItems)), true);

            if (UsdCsPINVOKE.SWIGPendingException.Pending)
            {
                throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #5
0
ファイル: SdfIntListOp.cs プロジェクト: feniksa/usd-unity-sdk
        public static SdfIntListOp CreateExplicit(StdIntVector explicitItems)
        {
            SdfIntListOp ret = new SdfIntListOp(UsdCsPINVOKE.SdfIntListOp_CreateExplicit__SWIG_0(StdIntVector.getCPtr(explicitItems)), true);

            if (UsdCsPINVOKE.SWIGPendingException.Pending)
            {
                throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #6
0
ファイル: SdfIntListOp.cs プロジェクト: feniksa/usd-unity-sdk
        public bool ReplaceOperations(SdfListOpType op, uint index, uint n, StdIntVector newItems)
        {
            bool ret = UsdCsPINVOKE.SdfIntListOp_ReplaceOperations(swigCPtr, (int)op, index, n, StdIntVector.getCPtr(newItems));

            if (UsdCsPINVOKE.SWIGPendingException.Pending)
            {
                throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #7
0
 public StdIntVector(StdIntVector other) : this(UsdCsPINVOKE.new_StdIntVector__SWIG_1(StdIntVector.getCPtr(other)), true)
 {
     if (UsdCsPINVOKE.SWIGPendingException.Pending)
     {
         throw UsdCsPINVOKE.SWIGPendingException.Retrieve();
     }
 }