Example #1
0
        public new static vtkCellLinks New()
        {
            vtkCellLinks result      = null;
            uint         mteStatus   = 0u;
            uint         mteIndex    = 4294967295u;
            uint         rawRefCount = 0u;
            IntPtr       intPtr      = vtkCellLinks.vtkCellLinks_New(ref mteStatus, ref mteIndex, ref rawRefCount);

            if (IntPtr.Zero != intPtr)
            {
                bool flag;
                result = (vtkCellLinks)Methods.CreateWrappedObject(mteStatus, mteIndex, rawRefCount, intPtr, true, out flag);
            }
            return(result);
        }
Example #2
0
        public vtkCellLinks GetCellLinks()
        {
            vtkCellLinks vtkCellLinks = null;
            uint         mteStatus    = 0u;
            uint         mteIndex     = 4294967295u;
            uint         rawRefCount  = 0u;
            IntPtr       intPtr       = vtkUnstructuredGrid.vtkUnstructuredGrid_GetCellLinks_15(base.GetCppThis(), ref mteStatus, ref mteIndex, ref rawRefCount);

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

            if (IntPtr.Zero != intPtr)
            {
                bool flag;
                vtkCellLinks = (vtkCellLinks)Methods.CreateWrappedObject(mteStatus, mteIndex, rawRefCount, intPtr, true, out flag);
                if (flag)
                {
                    vtkCellLinks.Register(null);
                }
            }
            return(vtkCellLinks);
        }
Example #4
0
 public void DeepCopy(vtkCellLinks src)
 {
     vtkCellLinks.vtkCellLinks_DeepCopy_05(base.GetCppThis(), (src == null) ? default(HandleRef) : src.GetCppThis());
 }