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

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

            if (IntPtr.Zero != intPtr)
            {
                bool flag;
                vtkInEdgeIterator = (vtkInEdgeIterator)Methods.CreateWrappedObject(mteStatus, mteIndex, rawRefCount, intPtr, true, out flag);
                if (flag)
                {
                    vtkInEdgeIterator.Register(null);
                }
            }
            return(vtkInEdgeIterator);
        }
Beispiel #3
0
 public virtual void GetInEdges(long v, vtkInEdgeIterator it)
 {
     vtkGraph.vtkGraph_GetInEdges_27(base.GetCppThis(), v, (it == null) ? default(HandleRef) : it.GetCppThis());
 }
Beispiel #4
0
 public override void GetInEdges(long v, vtkInEdgeIterator it)
 {
     vtkUndirectedGraph.vtkUndirectedGraph_GetInEdges_06(base.GetCppThis(), v, (it == null) ? default(HandleRef) : it.GetCppThis());
 }