public new static vtkAdjacentVertexIterator New()
        {
            vtkAdjacentVertexIterator result = null;
            uint   mteStatus   = 0u;
            uint   mteIndex    = 4294967295u;
            uint   rawRefCount = 0u;
            IntPtr intPtr      = vtkAdjacentVertexIterator.vtkAdjacentVertexIterator_New(ref mteStatus, ref mteIndex, ref rawRefCount);

            if (IntPtr.Zero != intPtr)
            {
                bool flag;
                result = (vtkAdjacentVertexIterator)Methods.CreateWrappedObject(mteStatus, mteIndex, rawRefCount, intPtr, true, out flag);
            }
            return(result);
        }
        public new static vtkAdjacentVertexIterator SafeDownCast(vtkObjectBase o)
        {
            vtkAdjacentVertexIterator vtkAdjacentVertexIterator = null;
            uint   mteStatus   = 0u;
            uint   mteIndex    = 4294967295u;
            uint   rawRefCount = 0u;
            IntPtr intPtr      = vtkAdjacentVertexIterator.vtkAdjacentVertexIterator_SafeDownCast_10((o == null) ? default(HandleRef) : o.GetCppThis(), ref mteStatus, ref mteIndex, ref rawRefCount);

            if (IntPtr.Zero != intPtr)
            {
                bool flag;
                vtkAdjacentVertexIterator = (vtkAdjacentVertexIterator)Methods.CreateWrappedObject(mteStatus, mteIndex, rawRefCount, intPtr, true, out flag);
                if (flag)
                {
                    vtkAdjacentVertexIterator.Register(null);
                }
            }
            return(vtkAdjacentVertexIterator);
        }
Пример #3
0
 public virtual void GetAdjacentVertices(long v, vtkAdjacentVertexIterator it)
 {
     vtkGraph.vtkGraph_GetAdjacentVertices_11(base.GetCppThis(), v, (it == null) ? default(HandleRef) : it.GetCppThis());
 }
Пример #4
0
 public void GetChildren(long v, vtkAdjacentVertexIterator it)
 {
     vtkTree.vtkTree_GetChildren_02(base.GetCppThis(), v, (it == null) ? default(HandleRef) : it.GetCppThis());
 }