ActiViz .NET  5.8.0
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkPolyData Class Reference

vtkPolyData - concrete dataset represents vertices, lines, polygons, and triangle strips More...

Inheritance diagram for Kitware.VTK.vtkPolyData:
[legend]
Collaboration diagram for Kitware.VTK.vtkPolyData:
[legend]

List of all members.

Public Types

enum  ERR_INCORRECT_FIELD_WrapperEnum {
  ERR_INCORRECT_FIELD = -3, ERR_NON_MANIFOLD_STAR = -2, ERR_NO_SUCH_FIELD = -4, MAXIMUM = 2,
  MINIMUM = 0, REGULAR_POINT = -1, SADDLE = 1
}
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet). More...

Public Member Functions

 vtkPolyData (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkPolyData ()
 Undocumented Block.
void AddCellReference (int cellId)
 For legacy compatibility. Do not use.
void AddReferenceToCell (int ptId, int cellId)
 Add a reference to a cell in a particular point's link list. (You may also consider using AddCellReference() to add the references from all the cell's points to the cell.) This operator does not realloc memory; use the operator ResizeCellList() to do this if necessary.
void Allocate (int numCells, int extSize)
 Method allocates initial storage for vertex, line, polygon, and triangle strip arrays. Use this method before the method PolyData::InsertNextCell(). (Or, provide vertex, line, polygon, and triangle strip cell arrays.)
void Allocate (vtkPolyData inPolyData, int numCells, int extSize)
 Similar to the method above, this method allocates initial storage for vertex, line, polygon, and triangle strip arrays. It does this more intelligently, examining the supplied inPolyData to determine whether to allocate the verts, lines, polys, and strips arrays. (These arrays are allocated only if there is data in the corresponding arrays in the inPolyData.) Caution: if the inPolyData has no verts, and after allocating with this method an PolyData::InsertNextCell() is invoked where a vertex is inserted, bad things will happen.
void BuildCells ()
 Create data structure that allows random access of cells.
void BuildLinks (int initialSize)
 Create upward links from points to cells that use each point. Enables topologically complex queries. Normally the links array is allocated based on the number of points in the vtkPolyData. The optional initialSize parameter can be used to allocate a larger size initially.
override void ComputeBounds ()
 Compute the (X, Y, Z) bounds of the data.
void CopyCells (vtkPolyData pd, vtkIdList idList, vtkPointLocator locator)
 Copy cells listed in idList from pd, including points, point data, and cell data. This method assumes that point and cell data have been allocated. If you pass in a point locator, then the points won't be duplicated in the output.
override void CopyStructure (vtkDataSet ds)
 Copy the geometric and topological structure of an input poly data object.
override void DeepCopy (vtkDataObject src)
 Shallow and Deep copy.
void DeleteCell (int cellId)
 For legacy compatibility. Do not use.
void DeleteCells ()
 Release data structure that allows random access of the cells. This must be done before a 2nd call to BuildLinks(). DeleteCells implicitly deletes the links as well since they are no longer valid.
void DeleteLinks ()
 Release the upward links from point to cells that use each point.
void DeletePoint (int ptId)
 For legacy compatibility. Do not use.
override uint GetActualMemorySize ()
 Return the actual size of the data in kilobytes. This number is valid only after the pipeline has updated. The memory size returned is guaranteed to be greater than or equal to the memory required to represent the data (e.g., extra space in arrays, etc. are not included in the return value). THIS METHOD IS THREAD SAFE.
override vtkCell GetCell (int cellId)
 Standard vtkDataSet interface.
override void GetCell (int cellId, vtkGenericCell cell)
 Standard vtkDataSet interface.
override void GetCellBounds (int cellId, IntPtr bounds)
 Standard vtkDataSet interface.
void GetCellEdgeNeighbors (int cellId, int p1, int p2, vtkIdList cellIds)
 Get the neighbors at an edge. More efficient than the general GetCellNeighbors(). Assumes links have been built (with BuildLinks()), and looks specifically for edge neighbors.
override void GetCellNeighbors (int cellId, vtkIdList ptIds, vtkIdList cellIds)
 Standard vtkDataSet interface.
override void GetCellPoints (int cellId, vtkIdList ptIds)
 Copy a cells point ids into list provided. (Less efficient.)
override int GetCellType (int cellId)
 Standard vtkDataSet interface.
override int GetDataObjectType ()
 Return what type of dataset this is.
virtual int GetGhostLevel ()
 Get the ghost level.
vtkCellArray GetLines ()
 Get the cell array defining lines. If there are no lines, an empty array will be returned (convenience to simplify traversal).
override int GetMaxCellSize ()
 Return the maximum cell size in this poly data.
override int GetNumberOfCells ()
 Standard vtkDataSet interface.
int GetNumberOfLines ()
 Return the number of primitives of a particular type held..
virtual int GetNumberOfPieces ()
 Get the piece and the number of pieces. Similar to extent in 3D.
int GetNumberOfPolys ()
 Return the number of primitives of a particular type held..
int GetNumberOfStrips ()
 Return the number of primitives of a particular type held..
int GetNumberOfVerts ()
 Return the number of primitives of a particular type held..
virtual int GetPiece ()
 Get the piece and the number of pieces. Similar to extent in 3D.
override void GetPointCells (int ptId, vtkIdList cellIds)
 Efficient method to obtain cells using a particular point. Make sure that routine BuildLinks() has been called.
vtkCellArray GetPolys ()
 Get the cell array defining polygons. If there are no polygons, an empty array will be returned (convenience to simplify traversal).
int GetScalarFieldCriticalIndex (int pointId, vtkDataArray scalarField)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
int GetScalarFieldCriticalIndex (int pointId, int fieldId)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
int GetScalarFieldCriticalIndex (int pointId, string fieldName)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
vtkCellArray GetStrips ()
 Get the cell array defining triangle strips. If there are no triangle strips, an empty array will be returned (convenience to simplify traversal).
void GetUpdateExtent (ref int piece, ref int numPieces, ref int ghostLevel)
 For streaming. User/next filter specifies which piece they want updated. The source of this poly data has to return exactly this piece.
override int[] GetUpdateExtent ()
 We need this here to avoid hiding superclass method.
override void GetUpdateExtent (ref int x0, ref int x1, ref int y0, ref int y1, ref int z0, ref int z1)
 We need this here to avoid hiding superclass method.
override void GetUpdateExtent (IntPtr extent)
 We need this here to avoid hiding superclass method.
vtkCellArray GetVerts ()
 Get the cell array defining vertices. If there are no vertices, an empty array will be returned (convenience to simplify traversal).
override void Initialize ()
 Restore object to initial state. Release memory back to system.
int InsertNextCell (int type, int npts, IntPtr pts)
 Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.
int InsertNextCell (int type, vtkIdList pts)
 Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.
int InsertNextLinkedCell (int type, int npts, IntPtr pts)
 Add a new cell to the cell data structure (after cell pointers have been built). This method adds the cell and then updates the links from the points to the cells. (Memory is allocated as necessary.)
int InsertNextLinkedPoint (int numLinks)
 Add a point to the cell data structure (after cell pointers have been built). This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links.
int InsertNextLinkedPoint (IntPtr x, int numLinks)
 Add a point to the cell data structure (after cell pointers have been built). This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links.
override int IsA (string type)
 Undocumented Block.
int IsEdge (int p1, int p2)
 Determine whether two points form an edge. If they do, return non-zero. By definition PolyVertex and PolyLine have no edges since 1-dimensional edges are only found on cells 2D and higher. Edges are defined as 1-D boundary entities to cells. Make sure BuildLinks() has been called first.
int IsPointUsedByCell (int ptId, int cellId)
 For legacy compatibility. Do not use.
int IsTriangle (int v1, int v2, int v3)
 For legacy compatibility. Do not use.
new vtkPolyData NewInstance ()
 Undocumented Block.
void RemoveCellReference (int cellId)
 For legacy compatibility. Do not use.
void RemoveDeletedCells ()
 The cells marked by calls to DeleteCell are stored in the Cell Array VTK_EMPTY_CELL, but they still exist in the polys array. Calling RemoveDeletedCells will travers the poly array and remove/compact the cell array as well as any cell data thus truly removing the cells from the polydata object. WARNING. This only handles the polys at the moment.
void RemoveGhostCells (int level)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
void RemoveReferenceToCell (int ptId, int cellId)
 Remove a reference to a cell in a particular point's link list. You may also consider using RemoveCellReference() to remove the references from all the cell's points to the cell. This operator does not reallocate memory; use the operator ResizeCellList() to do this if necessary.
void ReplaceCell (int cellId, int npts, IntPtr pts)
 Replace the points defining cell "cellId" with a new set of points. This operator is (typically) used when links from points to cells have not been built (i.e., BuildLinks() has not been executed). Use the operator ReplaceLinkedCell() to replace a cell when cell structure has been built.
void ReplaceCellPoint (int cellId, int oldPtId, int newPtId)
 For legacy compatibility. Do not use.
void ReplaceLinkedCell (int cellId, int npts, IntPtr pts)
 Replace one cell with another in cell structure. This operator updates the connectivity list and the point's link list. It does not delete references to the old cell in the point's link list. Use the operator RemoveCellReference() to delete all references from points to (old) cell. You may also want to consider using the operator ResizeCellList() if the link list is changing size.
void Reset ()
 Begin inserting data all over again. Memory is not freed but otherwise objects are returned to their initial state.
void ResizeCellList (int ptId, int size)
 For legacy compatibility. Do not use.
void ReverseCell (int cellId)
 Reverse the order of point ids defining the cell.
void SetLines (vtkCellArray l)
 Set the cell array defining lines.
void SetPolys (vtkCellArray p)
 Set the cell array defining polygons.
void SetStrips (vtkCellArray s)
 Set the cell array defining triangle strips.
void SetVerts (vtkCellArray v)
 Set the cell array defining vertices.
override void ShallowCopy (vtkDataObject src)
 Shallow and Deep copy.
override void Squeeze ()
 Recover extra allocated memory when creating data whose initial size is unknown. Examples include using the InsertNextCell() method, or when using the CellArray::EstimateSize() method to create vertices, lines, polygons, or triangle strips.

Static Public Member Functions

static new vtkPolyData New ()
 Undocumented Block.
static new vtkPolyData GetData (vtkInformation info)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
static new vtkPolyData GetData (vtkInformationVector v, int i)
 This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkPolyData SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkPolyData"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "11vtkPolyData"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkPolyData_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_AddCellReference_01 (HandleRef pThis, int cellId)
static internal void vtkPolyData_AddReferenceToCell_02 (HandleRef pThis, int ptId, int cellId)
static internal void vtkPolyData_Allocate_03 (HandleRef pThis, int numCells, int extSize)
static internal void vtkPolyData_Allocate_04 (HandleRef pThis, HandleRef inPolyData, int numCells, int extSize)
static internal void vtkPolyData_BuildCells_05 (HandleRef pThis)
static internal void vtkPolyData_BuildLinks_06 (HandleRef pThis, int initialSize)
static internal void vtkPolyData_ComputeBounds_07 (HandleRef pThis)
static internal void vtkPolyData_CopyCells_08 (HandleRef pThis, HandleRef pd, HandleRef idList, HandleRef locator)
static internal void vtkPolyData_CopyStructure_09 (HandleRef pThis, HandleRef ds)
static internal void vtkPolyData_DeepCopy_10 (HandleRef pThis, HandleRef src)
static internal void vtkPolyData_DeleteCell_11 (HandleRef pThis, int cellId)
static internal void vtkPolyData_DeleteCells_12 (HandleRef pThis)
static internal void vtkPolyData_DeleteLinks_13 (HandleRef pThis)
static internal void vtkPolyData_DeletePoint_14 (HandleRef pThis, int ptId)
static internal uint vtkPolyData_GetActualMemorySize_15 (HandleRef pThis)
static internal IntPtr vtkPolyData_GetCell_16 (HandleRef pThis, int cellId, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_GetCell_17 (HandleRef pThis, int cellId, HandleRef cell)
static internal void vtkPolyData_GetCellBounds_18 (HandleRef pThis, int cellId, IntPtr bounds)
static internal void vtkPolyData_GetCellEdgeNeighbors_19 (HandleRef pThis, int cellId, int p1, int p2, HandleRef cellIds)
static internal void vtkPolyData_GetCellNeighbors_20 (HandleRef pThis, int cellId, HandleRef ptIds, HandleRef cellIds)
static internal void vtkPolyData_GetCellPoints_21 (HandleRef pThis, int cellId, HandleRef ptIds)
static internal int vtkPolyData_GetCellType_22 (HandleRef pThis, int cellId)
static internal IntPtr vtkPolyData_GetData_23 (HandleRef info, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkPolyData_GetData_24 (HandleRef v, int i, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkPolyData_GetDataObjectType_25 (HandleRef pThis)
static internal int vtkPolyData_GetGhostLevel_26 (HandleRef pThis)
static internal IntPtr vtkPolyData_GetLines_27 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkPolyData_GetMaxCellSize_28 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfCells_29 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfLines_30 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfPieces_31 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfPolys_32 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfStrips_33 (HandleRef pThis)
static internal int vtkPolyData_GetNumberOfVerts_34 (HandleRef pThis)
static internal int vtkPolyData_GetPiece_35 (HandleRef pThis)
static internal void vtkPolyData_GetPointCells_36 (HandleRef pThis, int ptId, HandleRef cellIds)
static internal IntPtr vtkPolyData_GetPolys_37 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkPolyData_GetScalarFieldCriticalIndex_38 (HandleRef pThis, int pointId, HandleRef scalarField)
static internal int vtkPolyData_GetScalarFieldCriticalIndex_39 (HandleRef pThis, int pointId, int fieldId)
static internal int vtkPolyData_GetScalarFieldCriticalIndex_40 (HandleRef pThis, int pointId, string fieldName)
static internal IntPtr vtkPolyData_GetStrips_41 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_GetUpdateExtent_42 (HandleRef pThis, ref int piece, ref int numPieces, ref int ghostLevel)
static internal IntPtr vtkPolyData_GetUpdateExtent_43 (HandleRef pThis)
static internal void vtkPolyData_GetUpdateExtent_44 (HandleRef pThis, ref int x0, ref int x1, ref int y0, ref int y1, ref int z0, ref int z1)
static internal void vtkPolyData_GetUpdateExtent_45 (HandleRef pThis, IntPtr extent)
static internal IntPtr vtkPolyData_GetVerts_46 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_Initialize_47 (HandleRef pThis)
static internal int vtkPolyData_InsertNextCell_48 (HandleRef pThis, int type, int npts, IntPtr pts)
static internal int vtkPolyData_InsertNextCell_49 (HandleRef pThis, int type, HandleRef pts)
static internal int vtkPolyData_InsertNextLinkedCell_50 (HandleRef pThis, int type, int npts, IntPtr pts)
static internal int vtkPolyData_InsertNextLinkedPoint_51 (HandleRef pThis, int numLinks)
static internal int vtkPolyData_InsertNextLinkedPoint_52 (HandleRef pThis, IntPtr x, int numLinks)
static internal int vtkPolyData_IsA_53 (HandleRef pThis, string type)
static internal int vtkPolyData_IsEdge_54 (HandleRef pThis, int p1, int p2)
static internal int vtkPolyData_IsPointUsedByCell_55 (HandleRef pThis, int ptId, int cellId)
static internal int vtkPolyData_IsTriangle_56 (HandleRef pThis, int v1, int v2, int v3)
static internal int vtkPolyData_IsTypeOf_57 (string type)
static internal IntPtr vtkPolyData_NewInstance_59 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_RemoveCellReference_60 (HandleRef pThis, int cellId)
static internal void vtkPolyData_RemoveDeletedCells_61 (HandleRef pThis)
static internal void vtkPolyData_RemoveGhostCells_62 (HandleRef pThis, int level)
static internal void vtkPolyData_RemoveReferenceToCell_63 (HandleRef pThis, int ptId, int cellId)
static internal void vtkPolyData_ReplaceCell_64 (HandleRef pThis, int cellId, int npts, IntPtr pts)
static internal void vtkPolyData_ReplaceCellPoint_65 (HandleRef pThis, int cellId, int oldPtId, int newPtId)
static internal void vtkPolyData_ReplaceLinkedCell_66 (HandleRef pThis, int cellId, int npts, IntPtr pts)
static internal void vtkPolyData_Reset_67 (HandleRef pThis)
static internal void vtkPolyData_ResizeCellList_68 (HandleRef pThis, int ptId, int size)
static internal void vtkPolyData_ReverseCell_69 (HandleRef pThis, int cellId)
static internal IntPtr vtkPolyData_SafeDownCast_70 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkPolyData_SetLines_71 (HandleRef pThis, HandleRef l)
static internal void vtkPolyData_SetPolys_72 (HandleRef pThis, HandleRef p)
static internal void vtkPolyData_SetStrips_73 (HandleRef pThis, HandleRef s)
static internal void vtkPolyData_SetVerts_74 (HandleRef pThis, HandleRef v)
static internal void vtkPolyData_ShallowCopy_75 (HandleRef pThis, HandleRef src)
static internal void vtkPolyData_Squeeze_76 (HandleRef pThis)

Static Private Member Functions

static vtkPolyData ()
 Automatically generated type registration mechanics.

Detailed Description

vtkPolyData - concrete dataset represents vertices, lines, polygons, and triangle strips

Description vtkPolyData is a data object that is a concrete implementation of vtkDataSet. vtkPolyData represents a geometric structure consisting of vertices, lines, polygons, and/or triangle strips. Point and cell attribute values (e.g., scalars, vectors, etc.) also are represented.

The actual cell types (vtkCellType.h) supported by vtkPolyData are: vtkVertex, vtkPolyVertex, vtkLine, vtkPolyLine, vtkTriangle, vtkQuad, vtkPolygon, and vtkTriangleStrip.

One important feature of vtkPolyData objects is that special traversal and data manipulation methods are available to process data. These methods are generally more efficient than vtkDataSet methods and should be used whenever possible. For example, traversing the cells in a dataset we would use GetCell(). To traverse cells with vtkPolyData we would retrieve the cell array object representing polygons (for example using GetPolys()) and then use vtkCellArray's InitTraversal() and GetNextCell() methods.

Caveats Because vtkPolyData is implemented with four separate instances of vtkCellArray to represent 0D vertices, 1D lines, 2D polygons, and 2D triangle strips, it is possible to create vtkPolyData instances that consist of a mixture of cell types. Because of the design of the class, there are certain limitations on how mixed cell types are inserted into the vtkPolyData, and in turn the order in which they are processed and rendered. To preserve the consistency of cell ids, and to insure that cells with cell data are rendered properly, users must insert mixed cells in the order of vertices (vtkVertex and vtkPolyVertex), lines (vtkLine and vtkPolyLine), polygons (vtkTriangle, vtkQuad, vtkPolygon), and triangle strips (vtkTriangleStrip).

Some filters when processing vtkPolyData with mixed cell types may process the cells in differing ways. Some will convert one type into another (e.g., vtkTriangleStrip into vtkTriangles) or expect a certain type (vtkDecimatePro expects triangles or triangle strips; vtkTubeFilter expects lines). Read the documentation for each filter carefully to understand how each part of vtkPolyData is processed.


Member Enumeration Documentation

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

Enumerator:
ERR_INCORRECT_FIELD 

enum member

ERR_NON_MANIFOLD_STAR 

enum member

ERR_NO_SUCH_FIELD 

enum member

MAXIMUM 

enum member

MINIMUM 

enum member

REGULAR_POINT 

enum member

SADDLE 

enum member


Constructor & Destructor Documentation

static Kitware.VTK.vtkPolyData.vtkPolyData ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkPolyData.vtkPolyData ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

For legacy compatibility. Do not use.

void Kitware.VTK.vtkPolyData.AddReferenceToCell ( int  ptId,
int  cellId 
)

Add a reference to a cell in a particular point's link list. (You may also consider using AddCellReference() to add the references from all the cell's points to the cell.) This operator does not realloc memory; use the operator ResizeCellList() to do this if necessary.

void Kitware.VTK.vtkPolyData.Allocate ( int  numCells,
int  extSize 
)

Method allocates initial storage for vertex, line, polygon, and triangle strip arrays. Use this method before the method PolyData::InsertNextCell(). (Or, provide vertex, line, polygon, and triangle strip cell arrays.)

void Kitware.VTK.vtkPolyData.Allocate ( vtkPolyData  inPolyData,
int  numCells,
int  extSize 
)

Similar to the method above, this method allocates initial storage for vertex, line, polygon, and triangle strip arrays. It does this more intelligently, examining the supplied inPolyData to determine whether to allocate the verts, lines, polys, and strips arrays. (These arrays are allocated only if there is data in the corresponding arrays in the inPolyData.) Caution: if the inPolyData has no verts, and after allocating with this method an PolyData::InsertNextCell() is invoked where a vertex is inserted, bad things will happen.

Create data structure that allows random access of cells.

void Kitware.VTK.vtkPolyData.BuildLinks ( int  initialSize)

Create upward links from points to cells that use each point. Enables topologically complex queries. Normally the links array is allocated based on the number of points in the vtkPolyData. The optional initialSize parameter can be used to allocate a larger size initially.

override void Kitware.VTK.vtkPolyData.ComputeBounds ( ) [virtual]

Compute the (X, Y, Z) bounds of the data.

Reimplemented from Kitware.VTK.vtkPointSet.

Copy cells listed in idList from pd, including points, point data, and cell data. This method assumes that point and cell data have been allocated. If you pass in a point locator, then the points won't be duplicated in the output.

override void Kitware.VTK.vtkPolyData.CopyStructure ( vtkDataSet  ds) [virtual]

Copy the geometric and topological structure of an input poly data object.

Reimplemented from Kitware.VTK.vtkPointSet.

override void Kitware.VTK.vtkPolyData.DeepCopy ( vtkDataObject  src) [virtual]

Shallow and Deep copy.

Reimplemented from Kitware.VTK.vtkPointSet.

void Kitware.VTK.vtkPolyData.DeleteCell ( int  cellId)

For legacy compatibility. Do not use.

Release data structure that allows random access of the cells. This must be done before a 2nd call to BuildLinks(). DeleteCells implicitly deletes the links as well since they are no longer valid.

Release the upward links from point to cells that use each point.

For legacy compatibility. Do not use.

override void Kitware.VTK.vtkPolyData.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkPointSet.

override uint Kitware.VTK.vtkPolyData.GetActualMemorySize ( ) [virtual]

Return the actual size of the data in kilobytes. This number is valid only after the pipeline has updated. The memory size returned is guaranteed to be greater than or equal to the memory required to represent the data (e.g., extra space in arrays, etc. are not included in the return value). THIS METHOD IS THREAD SAFE.

Reimplemented from Kitware.VTK.vtkPointSet.

override vtkCell Kitware.VTK.vtkPolyData.GetCell ( int  cellId) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

Here is the call graph for this function:

override void Kitware.VTK.vtkPolyData.GetCell ( int  cellId,
vtkGenericCell  cell 
) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

override void Kitware.VTK.vtkPolyData.GetCellBounds ( int  cellId,
IntPtr  bounds 
) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

void Kitware.VTK.vtkPolyData.GetCellEdgeNeighbors ( int  cellId,
int  p1,
int  p2,
vtkIdList  cellIds 
)

Get the neighbors at an edge. More efficient than the general GetCellNeighbors(). Assumes links have been built (with BuildLinks()), and looks specifically for edge neighbors.

override void Kitware.VTK.vtkPolyData.GetCellNeighbors ( int  cellId,
vtkIdList  ptIds,
vtkIdList  cellIds 
) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

override void Kitware.VTK.vtkPolyData.GetCellPoints ( int  cellId,
vtkIdList  ptIds 
) [virtual]

Copy a cells point ids into list provided. (Less efficient.)

Reimplemented from Kitware.VTK.vtkDataSet.

override int Kitware.VTK.vtkPolyData.GetCellType ( int  cellId) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

Reimplemented from Kitware.VTK.vtkPointSet.

Here is the call graph for this function:

static new vtkPolyData Kitware.VTK.vtkPolyData.GetData ( vtkInformationVector  v,
int  i 
) [static]

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

Reimplemented from Kitware.VTK.vtkPointSet.

Here is the call graph for this function:

override int Kitware.VTK.vtkPolyData.GetDataObjectType ( ) [virtual]

Return what type of dataset this is.

Reimplemented from Kitware.VTK.vtkDataSet.

virtual int Kitware.VTK.vtkPolyData.GetGhostLevel ( ) [virtual]

Get the ghost level.

Get the cell array defining lines. If there are no lines, an empty array will be returned (convenience to simplify traversal).

Here is the call graph for this function:

override int Kitware.VTK.vtkPolyData.GetMaxCellSize ( ) [virtual]

Return the maximum cell size in this poly data.

Reimplemented from Kitware.VTK.vtkDataSet.

override int Kitware.VTK.vtkPolyData.GetNumberOfCells ( ) [virtual]

Standard vtkDataSet interface.

Reimplemented from Kitware.VTK.vtkDataSet.

Return the number of primitives of a particular type held..

virtual int Kitware.VTK.vtkPolyData.GetNumberOfPieces ( ) [virtual]

Get the piece and the number of pieces. Similar to extent in 3D.

Return the number of primitives of a particular type held..

Return the number of primitives of a particular type held..

Return the number of primitives of a particular type held..

virtual int Kitware.VTK.vtkPolyData.GetPiece ( ) [virtual]

Get the piece and the number of pieces. Similar to extent in 3D.

override void Kitware.VTK.vtkPolyData.GetPointCells ( int  ptId,
vtkIdList  cellIds 
) [virtual]

Efficient method to obtain cells using a particular point. Make sure that routine BuildLinks() has been called.

Reimplemented from Kitware.VTK.vtkDataSet.

Get the cell array defining polygons. If there are no polygons, an empty array will be returned (convenience to simplify traversal).

Here is the call graph for this function:

int Kitware.VTK.vtkPolyData.GetScalarFieldCriticalIndex ( int  pointId,
vtkDataArray  scalarField 
)

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

int Kitware.VTK.vtkPolyData.GetScalarFieldCriticalIndex ( int  pointId,
int  fieldId 
)

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

int Kitware.VTK.vtkPolyData.GetScalarFieldCriticalIndex ( int  pointId,
string  fieldName 
)

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

Get the cell array defining triangle strips. If there are no triangle strips, an empty array will be returned (convenience to simplify traversal).

Here is the call graph for this function:

void Kitware.VTK.vtkPolyData.GetUpdateExtent ( ref int  piece,
ref int  numPieces,
ref int  ghostLevel 
)

For streaming. User/next filter specifies which piece they want updated. The source of this poly data has to return exactly this piece.

override int [] Kitware.VTK.vtkPolyData.GetUpdateExtent ( ) [virtual]

We need this here to avoid hiding superclass method.

Reimplemented from Kitware.VTK.vtkDataObject.

override void Kitware.VTK.vtkPolyData.GetUpdateExtent ( ref int  x0,
ref int  x1,
ref int  y0,
ref int  y1,
ref int  z0,
ref int  z1 
) [virtual]

We need this here to avoid hiding superclass method.

Reimplemented from Kitware.VTK.vtkDataObject.

override void Kitware.VTK.vtkPolyData.GetUpdateExtent ( IntPtr  extent) [virtual]

We need this here to avoid hiding superclass method.

Reimplemented from Kitware.VTK.vtkDataObject.

Get the cell array defining vertices. If there are no vertices, an empty array will be returned (convenience to simplify traversal).

Here is the call graph for this function:

override void Kitware.VTK.vtkPolyData.Initialize ( ) [virtual]

Restore object to initial state. Release memory back to system.

Reimplemented from Kitware.VTK.vtkPointSet.

int Kitware.VTK.vtkPolyData.InsertNextCell ( int  type,
int  npts,
IntPtr  pts 
)

Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.

Insert a cell of type VTK_VERTEX, VTK_POLY_VERTEX, VTK_LINE, VTK_POLY_LINE, VTK_TRIANGLE, VTK_QUAD, VTK_POLYGON, or VTK_TRIANGLE_STRIP. Make sure that the PolyData::Allocate() function has been called first or that vertex, line, polygon, and triangle strip arrays have been supplied. Note: will also insert VTK_PIXEL, but converts it to VTK_QUAD.

int Kitware.VTK.vtkPolyData.InsertNextLinkedCell ( int  type,
int  npts,
IntPtr  pts 
)

Add a new cell to the cell data structure (after cell pointers have been built). This method adds the cell and then updates the links from the points to the cells. (Memory is allocated as necessary.)

Add a point to the cell data structure (after cell pointers have been built). This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links.

int Kitware.VTK.vtkPolyData.InsertNextLinkedPoint ( IntPtr  x,
int  numLinks 
)

Add a point to the cell data structure (after cell pointers have been built). This method adds the point and then allocates memory for the links to the cells. (To use this method, make sure points are available and BuildLinks() has been invoked.) Of the two methods below, one inserts a point coordinate and the other just makes room for cell links.

override int Kitware.VTK.vtkPolyData.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSet.

int Kitware.VTK.vtkPolyData.IsEdge ( int  p1,
int  p2 
)

Determine whether two points form an edge. If they do, return non-zero. By definition PolyVertex and PolyLine have no edges since 1-dimensional edges are only found on cells 2D and higher. Edges are defined as 1-D boundary entities to cells. Make sure BuildLinks() has been called first.

int Kitware.VTK.vtkPolyData.IsPointUsedByCell ( int  ptId,
int  cellId 
)

For legacy compatibility. Do not use.

int Kitware.VTK.vtkPolyData.IsTriangle ( int  v1,
int  v2,
int  v3 
)

For legacy compatibility. Do not use.

static new int Kitware.VTK.vtkPolyData.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSet.

static new vtkPolyData Kitware.VTK.vtkPolyData.New ( ) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkDataObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSet.

For legacy compatibility. Do not use.

The cells marked by calls to DeleteCell are stored in the Cell Array VTK_EMPTY_CELL, but they still exist in the polys array. Calling RemoveDeletedCells will travers the poly array and remove/compact the cell array as well as any cell data thus truly removing the cells from the polydata object. WARNING. This only handles the polys at the moment.

This method will remove any cell that has a ghost level array value greater or equal to level. It does not remove unused points (yet).

void Kitware.VTK.vtkPolyData.RemoveReferenceToCell ( int  ptId,
int  cellId 
)

Remove a reference to a cell in a particular point's link list. You may also consider using RemoveCellReference() to remove the references from all the cell's points to the cell. This operator does not reallocate memory; use the operator ResizeCellList() to do this if necessary.

void Kitware.VTK.vtkPolyData.ReplaceCell ( int  cellId,
int  npts,
IntPtr  pts 
)

Replace the points defining cell "cellId" with a new set of points. This operator is (typically) used when links from points to cells have not been built (i.e., BuildLinks() has not been executed). Use the operator ReplaceLinkedCell() to replace a cell when cell structure has been built.

void Kitware.VTK.vtkPolyData.ReplaceCellPoint ( int  cellId,
int  oldPtId,
int  newPtId 
)

For legacy compatibility. Do not use.

void Kitware.VTK.vtkPolyData.ReplaceLinkedCell ( int  cellId,
int  npts,
IntPtr  pts 
)

Replace one cell with another in cell structure. This operator updates the connectivity list and the point's link list. It does not delete references to the old cell in the point's link list. Use the operator RemoveCellReference() to delete all references from points to (old) cell. You may also want to consider using the operator ResizeCellList() if the link list is changing size.

Begin inserting data all over again. Memory is not freed but otherwise objects are returned to their initial state.

void Kitware.VTK.vtkPolyData.ResizeCellList ( int  ptId,
int  size 
)

For legacy compatibility. Do not use.

Reverse the order of point ids defining the cell.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkPointSet.

Here is the call graph for this function:

Set the cell array defining lines.

Set the cell array defining polygons.

Set the cell array defining triangle strips.

Set the cell array defining vertices.

override void Kitware.VTK.vtkPolyData.ShallowCopy ( vtkDataObject  src) [virtual]

Shallow and Deep copy.

Reimplemented from Kitware.VTK.vtkPointSet.

override void Kitware.VTK.vtkPolyData.Squeeze ( ) [virtual]

Recover extra allocated memory when creating data whose initial size is unknown. Examples include using the InsertNextCell() method, or when using the CellArray::EstimateSize() method to create vertices, lines, polygons, or triangle strips.

Reimplemented from Kitware.VTK.vtkPointSet.

static internal void Kitware.VTK.vtkPolyData.vtkPolyData_AddCellReference_01 ( HandleRef  pThis,
int  cellId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_AddReferenceToCell_02 ( HandleRef  pThis,
int  ptId,
int  cellId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_Allocate_03 ( HandleRef  pThis,
int  numCells,
int  extSize 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_Allocate_04 ( HandleRef  pThis,
HandleRef  inPolyData,
int  numCells,
int  extSize 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_BuildCells_05 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_BuildLinks_06 ( HandleRef  pThis,
int  initialSize 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ComputeBounds_07 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_CopyCells_08 ( HandleRef  pThis,
HandleRef  pd,
HandleRef  idList,
HandleRef  locator 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_CopyStructure_09 ( HandleRef  pThis,
HandleRef  ds 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_DeepCopy_10 ( HandleRef  pThis,
HandleRef  src 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_DeleteCell_11 ( HandleRef  pThis,
int  cellId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_DeleteCells_12 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_DeleteLinks_13 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_DeletePoint_14 ( HandleRef  pThis,
int  ptId 
) [private]
static internal uint Kitware.VTK.vtkPolyData.vtkPolyData_GetActualMemorySize_15 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetCell_16 ( HandleRef  pThis,
int  cellId,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetCell_17 ( HandleRef  pThis,
int  cellId,
HandleRef  cell 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetCellBounds_18 ( HandleRef  pThis,
int  cellId,
IntPtr  bounds 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetCellEdgeNeighbors_19 ( HandleRef  pThis,
int  cellId,
int  p1,
int  p2,
HandleRef  cellIds 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetCellNeighbors_20 ( HandleRef  pThis,
int  cellId,
HandleRef  ptIds,
HandleRef  cellIds 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetCellPoints_21 ( HandleRef  pThis,
int  cellId,
HandleRef  ptIds 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetCellType_22 ( HandleRef  pThis,
int  cellId 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetData_23 ( HandleRef  info,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetData_24 ( HandleRef  v,
int  i,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetDataObjectType_25 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetGhostLevel_26 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetLines_27 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetMaxCellSize_28 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfCells_29 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfLines_30 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfPieces_31 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfPolys_32 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfStrips_33 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetNumberOfVerts_34 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetPiece_35 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetPointCells_36 ( HandleRef  pThis,
int  ptId,
HandleRef  cellIds 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetPolys_37 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetScalarFieldCriticalIndex_38 ( HandleRef  pThis,
int  pointId,
HandleRef  scalarField 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetScalarFieldCriticalIndex_39 ( HandleRef  pThis,
int  pointId,
int  fieldId 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_GetScalarFieldCriticalIndex_40 ( HandleRef  pThis,
int  pointId,
string  fieldName 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetStrips_41 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetUpdateExtent_42 ( HandleRef  pThis,
ref int  piece,
ref int  numPieces,
ref int  ghostLevel 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetUpdateExtent_43 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetUpdateExtent_44 ( HandleRef  pThis,
ref int  x0,
ref int  x1,
ref int  y0,
ref int  y1,
ref int  z0,
ref int  z1 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_GetUpdateExtent_45 ( HandleRef  pThis,
IntPtr  extent 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_GetVerts_46 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_Initialize_47 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_InsertNextCell_48 ( HandleRef  pThis,
int  type,
int  npts,
IntPtr  pts 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_InsertNextCell_49 ( HandleRef  pThis,
int  type,
HandleRef  pts 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_InsertNextLinkedCell_50 ( HandleRef  pThis,
int  type,
int  npts,
IntPtr  pts 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_InsertNextLinkedPoint_51 ( HandleRef  pThis,
int  numLinks 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_InsertNextLinkedPoint_52 ( HandleRef  pThis,
IntPtr  x,
int  numLinks 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_IsA_53 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_IsEdge_54 ( HandleRef  pThis,
int  p1,
int  p2 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_IsPointUsedByCell_55 ( HandleRef  pThis,
int  ptId,
int  cellId 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_IsTriangle_56 ( HandleRef  pThis,
int  v1,
int  v2,
int  v3 
) [private]
static internal int Kitware.VTK.vtkPolyData.vtkPolyData_IsTypeOf_57 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_NewInstance_59 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_RemoveCellReference_60 ( HandleRef  pThis,
int  cellId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_RemoveDeletedCells_61 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_RemoveGhostCells_62 ( HandleRef  pThis,
int  level 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_RemoveReferenceToCell_63 ( HandleRef  pThis,
int  ptId,
int  cellId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ReplaceCell_64 ( HandleRef  pThis,
int  cellId,
int  npts,
IntPtr  pts 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ReplaceCellPoint_65 ( HandleRef  pThis,
int  cellId,
int  oldPtId,
int  newPtId 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ReplaceLinkedCell_66 ( HandleRef  pThis,
int  cellId,
int  npts,
IntPtr  pts 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_Reset_67 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ResizeCellList_68 ( HandleRef  pThis,
int  ptId,
int  size 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ReverseCell_69 ( HandleRef  pThis,
int  cellId 
) [private]
static internal IntPtr Kitware.VTK.vtkPolyData.vtkPolyData_SafeDownCast_70 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_SetLines_71 ( HandleRef  pThis,
HandleRef  l 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_SetPolys_72 ( HandleRef  pThis,
HandleRef  p 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_SetStrips_73 ( HandleRef  pThis,
HandleRef  s 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_SetVerts_74 ( HandleRef  pThis,
HandleRef  v 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_ShallowCopy_75 ( HandleRef  pThis,
HandleRef  src 
) [private]
static internal void Kitware.VTK.vtkPolyData.vtkPolyData_Squeeze_76 ( HandleRef  pThis) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkPolyData.MRClassNameKey = "11vtkPolyData" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPointSet.

new const string Kitware.VTK.vtkPolyData.MRFullTypeName = "Kitware.VTK.vtkPolyData"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkPointSet.


The documentation for this class was generated from the following file: