public vector_OrdFloatImage(vector_OrdFloatImage other) : this(VisionLabPINVOKE.new_vector_OrdFloatImage__SWIG_1(vector_OrdFloatImage.getCPtr(other)), true)
 {
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
 public vector_OrdFloatImageEnumerator(vector_OrdFloatImage collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
 public void SetRange(int index, vector_OrdFloatImage values)
 {
     VisionLabPINVOKE.vector_OrdFloatImage_SetRange(swigCPtr, index, vector_OrdFloatImage.getCPtr(values));
     if (VisionLabPINVOKE.SWIGPendingException.Pending)
     {
         throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
     }
 }
    public static vector_OrdFloatImage Repeat(OrdFloatImage value, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_OrdFloatImage_Repeat(OrdFloatImage.getCPtr(value), count);
        vector_OrdFloatImage ret = (cPtr == IntPtr.Zero) ? null : new vector_OrdFloatImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
    public vector_OrdFloatImage GetRange(int index, int count)
    {
        IntPtr cPtr = VisionLabPINVOKE.vector_OrdFloatImage_GetRange(swigCPtr, index, count);
        vector_OrdFloatImage ret = (cPtr == IntPtr.Zero) ? null : new vector_OrdFloatImage(cPtr, true);

        if (VisionLabPINVOKE.SWIGPendingException.Pending)
        {
            throw VisionLabPINVOKE.SWIGPendingException.Retrieve();
        }
        return(ret);
    }
 internal static HandleRef getCPtr(vector_OrdFloatImage obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }