Exemple #1
0
                public VectorPoint3f At(uint pos)
                {
                    Cv.Core.Exception exception = new Cv.Core.Exception();
                    VectorPoint3f     element   = new VectorPoint3f(au_std_vectorVectorPoint3f_at(cppPtr, pos, exception.cppPtr), DeleteResponsibility.False);

                    exception.Check();
                    return(element);
                }
Exemple #2
0
                public unsafe VectorPoint3f[] Data()
                {
                    System.IntPtr *dataPtr = au_std_vectorVectorPoint3f_data(cppPtr);
                    uint           size    = Size();

                    VectorPoint3f[] data = new VectorPoint3f[size];
                    for (int i = 0; i < size; i++)
                    {
                        data[i] = new VectorPoint3f(dataPtr[i], DeleteResponsibility.False);
                    }

                    return(data);
                }
Exemple #3
0
 public void PushBack(VectorPoint3f value)
 {
     au_std_vectorVectorPoint3f_push_back(cppPtr, value.cppPtr);
 }