|
| vtkPolyData (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
| vtkPolyData () |
| Undocumented Block More...
|
|
void | AddCellReference (long cellId) |
| Add references to cell in cell structure. This means the links from the cell's points to the cell are modified. Memory is not extended. Use the method ResizeCellList() to resize the link list from a point to its using cells. (This operator assumes BuildLinks() has been called.) More...
|
|
void | AddReferenceToCell (long ptId, long 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. More...
|
|
void | Allocate (long 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.) More...
|
|
void | Allocate (vtkPolyData inPolyData, long 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. More...
|
|
void | BuildCells () |
| Create data structure that allows random access of cells. More...
|
|
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. More...
|
|
override void | ComputeBounds () |
| Compute the (X, Y, Z) bounds of the data. More...
|
|
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. More...
|
|
override void | CopyStructure (vtkDataSet ds) |
| Copy the geometric and topological structure of an input poly data object. More...
|
|
override void | DeepCopy (vtkDataObject src) |
| Shallow and Deep copy. More...
|
|
void | DeleteCell (long cellId) |
| Mark a point/cell as deleted from this vtkPolyData. More...
|
|
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. More...
|
|
void | DeleteLinks () |
| Release the upward links from point to cells that use each point. More...
|
|
void | DeletePoint (long ptId) |
| Mark a point/cell as deleted from this vtkPolyData. More...
|
|
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. More...
|
|
override vtkCell | GetCell (long cellId) |
| Standard vtkDataSet interface. More...
|
|
override void | GetCell (long cellId, vtkGenericCell cell) |
| Standard vtkDataSet interface. More...
|
|
override void | GetCellBounds (long cellId, IntPtr bounds) |
| Standard vtkDataSet interface. More...
|
|
void | GetCellEdgeNeighbors (long cellId, long p1, long 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. More...
|
|
override void | GetCellNeighbors (long cellId, vtkIdList ptIds, vtkIdList cellIds) |
| Standard vtkDataSet interface. More...
|
|
override void | GetCellPoints (long cellId, vtkIdList ptIds) |
| Copy a cells point ids into list provided. (Less efficient.) More...
|
|
override int | GetCellType (long cellId) |
| Standard vtkDataSet interface. More...
|
|
override int | GetDataObjectType () |
| Return what type of dataset this is. More...
|
|
virtual int | GetGhostLevel () |
| Get the ghost level. More...
|
|
vtkCellArray | GetLines () |
| Get the cell array defining lines. If there are no lines, an empty array will be returned (convenience to simplify traversal). More...
|
|
override int | GetMaxCellSize () |
| Return the maximum cell size in this poly data. More...
|
|
override long | GetNumberOfCells () |
| Standard vtkDataSet interface. More...
|
|
long | GetNumberOfLines () |
| Return the number of primitives of a particular type held.. More...
|
|
virtual int | GetNumberOfPieces () |
| Get the piece and the number of pieces. Similar to extent in 3D. More...
|
|
long | GetNumberOfPolys () |
| Return the number of primitives of a particular type held.. More...
|
|
long | GetNumberOfStrips () |
| Return the number of primitives of a particular type held.. More...
|
|
long | GetNumberOfVerts () |
| Return the number of primitives of a particular type held.. More...
|
|
virtual int | GetPiece () |
| Get the piece and the number of pieces. Similar to extent in 3D. More...
|
|
override void | GetPointCells (long ptId, vtkIdList cellIds) |
| Efficient method to obtain cells using a particular point. Make sure that routine BuildLinks() has been called. More...
|
|
vtkCellArray | GetPolys () |
| Get the cell array defining polygons. If there are no polygons, an empty array will be returned (convenience to simplify traversal). More...
|
|
int | GetScalarFieldCriticalIndex (long 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). More...
|
|
int | GetScalarFieldCriticalIndex (long 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). More...
|
|
int | GetScalarFieldCriticalIndex (long 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). More...
|
|
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). More...
|
|
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. More...
|
|
override int[] | GetUpdateExtent () |
| We need this here to avoid hiding superclass method More...
|
|
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 More...
|
|
override void | GetUpdateExtent (IntPtr extent) |
| We need this here to avoid hiding superclass method More...
|
|
vtkCellArray | GetVerts () |
| Get the cell array defining vertices. If there are no vertices, an empty array will be returned (convenience to simplify traversal). More...
|
|
override void | Initialize () |
| Restore object to initial state. Release memory back to system. More...
|
|
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. More...
|
|
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. More...
|
|
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.) More...
|
|
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. More...
|
|
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. More...
|
|
override int | IsA (string type) |
| Undocumented Block More...
|
|
int | IsEdge (long p1, long 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. More...
|
|
int | IsPointUsedByCell (long ptId, long cellId) |
| Determine whether a point is used by a particular cell. If it is, return non-zero. Make sure BuildCells() has been called first. More...
|
|
int | IsTriangle (int v1, int v2, int v3) |
| Given three vertices, determine whether it's a triangle. Make sure BuildLinks() has been called first. More...
|
|
new vtkPolyData | NewInstance () |
| Undocumented Block More...
|
|
void | RemoveCellReference (long cellId) |
| Remove all references to cell in cell structure. This means the links from the cell's points to the cell are deleted. Memory is not reclaimed. Use the method ResizeCellList() to resize the link list from a point to its using cells. (This operator assumes BuildLinks() has been called.) More...
|
|
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 More...
|
|
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). More...
|
|
void | RemoveReferenceToCell (long ptId, long 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. More...
|
|
void | ReplaceCell (long 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. More...
|
|
void | ReplaceCellPoint (long cellId, long oldPtId, long newPtId) |
| Replace a point in the cell connectivity list with a different point. More...
|
|
void | ReplaceLinkedCell (long 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. More...
|
|
void | Reset () |
| Begin inserting data all over again. Memory is not freed but otherwise objects are returned to their initial state. More...
|
|
void | ResizeCellList (long ptId, int size) |
| Resize the list of cells using a particular point. (This operator assumes that BuildLinks() has been called.) More...
|
|
void | ReverseCell (long cellId) |
| Reverse the order of point ids defining the cell. More...
|
|
void | SetLines (vtkCellArray l) |
| Set the cell array defining lines. More...
|
|
void | SetPolys (vtkCellArray p) |
| Set the cell array defining polygons. More...
|
|
void | SetStrips (vtkCellArray s) |
| Set the cell array defining triangle strips. More...
|
|
void | SetVerts (vtkCellArray v) |
| Set the cell array defining vertices. More...
|
|
override void | ShallowCopy (vtkDataObject src) |
| Shallow and Deep copy. More...
|
|
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. More...
|
|
| vtkPointSet (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
override long | FindCell (IntPtr x, vtkCell cell, long cellId, double tol2, ref int subId, IntPtr pcoords, IntPtr weights) |
| See vtkDataSet for additional information. More...
|
|
override long | FindCell (IntPtr x, vtkCell cell, vtkGenericCell gencell, long cellId, double tol2, ref int subId, IntPtr pcoords, IntPtr weights) |
| See vtkDataSet for additional information. More...
|
|
override long | FindPoint (IntPtr x) |
| See vtkDataSet for additional information. More...
|
|
new long | FindPoint (double x, double y, double z) |
| See vtkDataSet for additional information. More...
|
|
override uint | GetMTime () |
| Get MTime which also considers its vtkPoints MTime. More...
|
|
override long | GetNumberOfPoints () |
| See vtkDataSet for additional information. More...
|
|
override double[] | GetPoint (long ptId) |
| See vtkDataSet for additional information. More...
|
|
override void | GetPoint (long ptId, IntPtr x) |
| See vtkDataSet for additional information. More...
|
|
virtual vtkPoints | GetPoints () |
| Specify point array to define point coordinates. More...
|
|
new vtkPointSet | NewInstance () |
| Undocumented Block More...
|
|
virtual void | SetPoints (vtkPoints arg0) |
| Specify point array to define point coordinates. More...
|
|
| vtkDataSet (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
int | CheckAttributes () |
| This method checks to see if the cell and point attributes match the geometry. Many filters will crash if the number of tupples in an array is less than the number of points/cells. This method returns 1 if there is a mismatch, and 0 if everything is ok. It prints an error if an array is too short, and a warning if an array is too long. More...
|
|
virtual void | CopyAttributes (vtkDataSet ds) |
| Copy the attributes associated with the specified dataset to this instance of vtkDataSet. THIS METHOD IS NOT THREAD SAFE. More...
|
|
virtual vtkCell | FindAndGetCell (IntPtr x, vtkCell cell, long cellId, double tol2, ref int subId, IntPtr pcoords, IntPtr weights) |
| Locate the cell that contains a point and return the cell. Also returns the subcell id, parametric coordinates and weights for subsequent interpolation. This method combines the derived class methods int FindCell and vtkCell *GetCell. Derived classes may provide a more efficient implementation. See for example vtkStructuredPoints. THIS METHOD IS NOT THREAD SAFE. More...
|
|
long | FindPoint (double x, double y, double z) |
| Locate the closest point to the global coordinate x. Return the point id. If point id < 0; then no point found. (This may arise when point is outside of dataset.) THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
virtual void | GenerateGhostLevelArray () |
| Normally called by pipeline executives or algoritgms only. This method computes the ghost arrays for a given dataset. More...
|
|
override vtkFieldData | GetAttributesAsFieldData (int type) |
| Returns the attributes of the data object as a vtkFieldData. This returns non-null values in all the same cases as GetAttributes, in addition to the case of FIELD, which will return the field data for any vtkDataObject subclass. More...
|
|
double[] | GetBounds () |
| Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). THIS METHOD IS NOT THREAD SAFE. More...
|
|
void | GetBounds (IntPtr bounds) |
| Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
vtkCellData | GetCellData () |
| Return a pointer to this dataset's cell data. THIS METHOD IS THREAD SAFE More...
|
|
virtual void | GetCellTypes (vtkCellTypes types) |
| Get a list of types of cells in a dataset. The list consists of an array of types (not necessarily in any order), with a single entry per type. For example a dataset 5 triangles, 3 lines, and 100 hexahedra would result a list of three entries, corresponding to the types VTK_TRIANGLE, VTK_LINE, and VTK_HEXAHEDRON. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
double[] | GetCenter () |
| Get the center of the bounding box. THIS METHOD IS NOT THREAD SAFE. More...
|
|
void | GetCenter (IntPtr center) |
| Get the center of the bounding box. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
double | GetLength () |
| Return the length of the diagonal of the bounding box. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
override long | GetNumberOfElements (int type) |
| Get the number of elements for a specific attribute type (POINT, CELL, etc.). More...
|
|
vtkPointData | GetPointData () |
| Return a pointer to this dataset's point data. THIS METHOD IS THREAD SAFE More...
|
|
virtual void | GetScalarRange (IntPtr range) |
| Convenience method to get the range of the first component (and only the first component) of any scalars in the data set. If the data has both point data and cell data, it returns the (min/max) range of combined point and cell data. If there are no point or cell scalars the method will return (0,1). Note: It might be necessary to call Update to create or refresh the scalars before calling this method. THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND THE DATASET IS NOT MODIFIED More...
|
|
double[] | GetScalarRange () |
| Convenience method to get the range of the first component (and only the first component) of any scalars in the data set. If the data has both point data and cell data, it returns the (min/max) range of combined point and cell data. If there are no point or cell scalars the method will return (0,1). Note: It might be necessary to call Update to create or refresh the scalars before calling this method. THIS METHOD IS NOT THREAD SAFE. More...
|
|
new vtkDataSet | NewInstance () |
| Undocumented Block More...
|
|
| vtkDataObject (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
| vtkDataObject () |
| Undocumented Block More...
|
|
override void | Register (vtkObjectBase o) |
| Handle the source/data loop. More...
|
|
void | CopyInformation (vtkDataObject data) |
| Copy the generic information (WholeExtent ...) More...
|
|
virtual void | CopyInformationFromPipeline (vtkInformation request) |
| Copy information about this data object from the PipelineInformation to its own Information for the given request. More...
|
|
virtual void | CopyInformationToPipeline (vtkInformation request, vtkInformation input, vtkInformation output, int forceCopy) |
| Copy information about this data object to the output information from its own Information for the given request. If the second argument is not NULL then it is the pipeline information object for the input to this data object's producer. If forceCopy is true, information is copied even if it exists in the output. More...
|
|
void | CopyInformationToPipeline (vtkInformation request, vtkInformation input) |
| Calls CopyInformationToPipeline(request, input, this->PipelineInformation, 0). Subclasses should not override this method (not virtual) More...
|
|
virtual void | CopyTypeSpecificInformation (vtkDataObject data) |
| By default, there is no type specific information More...
|
|
virtual void | Crop () |
| This method crops the data object (if necesary) so that the extent matches the update extent. More...
|
|
void | DataHasBeenGenerated () |
| This method is called by the source when it executes to generate data. It is sort of the opposite of ReleaseData. It sets the DataReleased flag to 0, and sets a new UpdateTime. More...
|
|
virtual int | GetAttributeTypeForArray (vtkAbstractArray arr) |
| Retrieves the attribute type that an array came from. This is useful for obtaining which attribute type a input array to an algorithm came from (retrieved from GetInputAbstractArrayToProcesss). More...
|
|
virtual vtkDataSetAttributes | GetAttributes (int type) |
| Returns the attributes of the data object of the specified attribute type. The type may be: <ul> <li>POINT - Defined in vtkDataSet subclasses. <li>CELL - Defined in vtkDataSet subclasses. <li>VERTEX - Defined in vtkGraph subclasses. <li>EDGE - Defined in vtkGraph subclasses. <li>ROW - Defined in vtkTable. </ul> The other attribute type, FIELD, will return NULL since field data is stored as a vtkFieldData instance, not a vtkDataSetAttributes instance. To retrieve field data, use GetAttributesAsFieldData. More...
|
|
virtual int | GetDataReleased () |
| Get the flag indicating the data has been released. More...
|
|
virtual uint | GetEstimatedMemorySize () |
| Get the estimated size of this data object itself. Should be called after UpdateInformation() and PropagateUpdateExtent() have both been called. Should be overridden in a subclass - otherwise the default is to assume that this data object requires no memory. The size is returned in kilobytes. More...
|
|
vtkExtentTranslator | GetExtentTranslator () |
| An object that will translate pieces into structured extents. More...
|
|
virtual int | GetExtentType () |
| The ExtentType will be left as VTK_PIECES_EXTENT for data objects such as vtkPolyData and vtkUnstructuredGrid. The ExtentType will be changed to VTK_3D_EXTENT for data objects with 3D structure such as vtkImageData (and its subclass vtkStructuredPoints), vtkRectilinearGrid, and vtkStructuredGrid. The default is the have an extent in pieces, with only one piece (no streaming possible). More...
|
|
virtual vtkFieldData | GetFieldData () |
| Assign or retrieve a general field data to this data object. More...
|
|
virtual vtkInformation | GetInformation () |
| Set/Get the information object associated with this data object. More...
|
|
virtual int | GetMaximumNumberOfPieces () |
| Set/Get the maximum number of pieces that can be requested. The maximum number of pieces is meta data for unstructured data sets. It gets set by the source during the update information call. A value of -1 indicates that there is no maximum. More...
|
|
virtual vtkInformation | GetPipelineInformation () |
| Get/Set the pipeline information object that owns this data object. More...
|
|
uint | GetPipelineMTime () |
| Get the cumulative modified time of everything upstream. Does not include the MTime of this object. More...
|
|
virtual vtkAlgorithmOutput | GetProducerPort () |
| Get the port currently producing this object. More...
|
|
int | GetReleaseDataFlag () |
| Turn on/off flag to control whether this object's data is released after being used by a filter. More...
|
|
virtual int | GetRequestExactExtent () |
| This request flag indicates whether the requester can handle more data than requested. Right now it is used in vtkImageData. Image filters can return more data than requested. The the consumer cannot handle this (i.e. DataSetToDataSetFitler) the image will crop itself. This functionality used to be in ImageToStructuredPoints. More...
|
|
virtual vtkSource | GetSource () |
| Set/Get the source object creating this data object. More...
|
|
virtual int | GetUpdateGhostLevel () |
| Set / Get the update ghost level and the update number of ghost levels. Similar to update extent in 3D. More...
|
|
virtual int | GetUpdateNumberOfPieces () |
| Set / Get the update piece and the update number of pieces. Similar to update extent in 3D. More...
|
|
virtual int | GetUpdatePiece () |
| Set / Get the update piece and the update number of pieces. Similar to update extent in 3D. More...
|
|
uint | GetUpdateTime () |
| Used by Threaded ports to determine if they should initiate an asynchronous update (still in development). More...
|
|
virtual double[] | GetWholeBoundingBox () |
| Set/Get the whole bounding box of this data object. The whole whole bounding box is meta data for data sets It gets set by the source during the update information call. More...
|
|
virtual void | GetWholeBoundingBox (ref double x0, ref double x1, ref double y0, ref double y1, ref double z0, ref double z1) |
| Set/Get the whole bounding box of this data object. The whole whole bounding box is meta data for data sets It gets set by the source during the update information call. More...
|
|
virtual void | GetWholeBoundingBox (IntPtr extent) |
| Set/Get the whole bounding box of this data object. The whole whole bounding box is meta data for data sets It gets set by the source during the update information call. More...
|
|
virtual int[] | GetWholeExtent () |
| Set/Get the whole extent of this data object. The whole extent is meta data for structured data sets. It gets set by the source during the update information call. More...
|
|
virtual void | GetWholeExtent (ref int x0, ref int x1, ref int y0, ref int y1, ref int z0, ref int z1) |
| Set/Get the whole extent of this data object. The whole extent is meta data for structured data sets. It gets set by the source during the update information call. More...
|
|
virtual void | GetWholeExtent (IntPtr extent) |
| Set/Get the whole extent of this data object. The whole extent is meta data for structured data sets. It gets set by the source during the update information call. More...
|
|
void | GlobalReleaseDataFlagOff () |
| Turn on/off flag to control whether every object releases its data after being used by a filter. More...
|
|
void | GlobalReleaseDataFlagOn () |
| Turn on/off flag to control whether every object releases its data after being used by a filter. More...
|
|
new vtkDataObject | NewInstance () |
| Undocumented Block More...
|
|
virtual void | PrepareForNewData () |
| make the output data ready for new data to be inserted. For most objects we just call Initialize. But for vtkImageData we leave the old data in case the memory can be reused. More...
|
|
virtual void | PropagateUpdateExtent () |
| WARNING: INTERNAL METHOD - NOT FOR GENERAL USE. THIS METHOD IS PART OF THE PIPELINE UPDATE FUNCTIONALITY. The update extent for this object is propagated up the pipeline. This propagation may early terminate based on the PipelineMTime. More...
|
|
void | ReleaseData () |
| Release data back to system to conserve memory resource. Used during visualization network execution. Releasing this data does not make down-stream data invalid, so it does not modify the MTime of this data object. More...
|
|
virtual void | ReleaseDataFlagOff () |
| Turn on/off flag to control whether this object's data is released after being used by a filter. More...
|
|
virtual void | ReleaseDataFlagOn () |
| Turn on/off flag to control whether this object's data is released after being used by a filter. More...
|
|
virtual void | RequestExactExtentOff () |
| This request flag indicates whether the requester can handle more data than requested. Right now it is used in vtkImageData. Image filters can return more data than requested. The the consumer cannot handle this (i.e. DataSetToDataSetFitler) the image will crop itself. This functionality used to be in ImageToStructuredPoints. More...
|
|
virtual void | RequestExactExtentOn () |
| This request flag indicates whether the requester can handle more data than requested. Right now it is used in vtkImageData. Image filters can return more data than requested. The the consumer cannot handle this (i.e. DataSetToDataSetFitler) the image will crop itself. This functionality used to be in ImageToStructuredPoints. More...
|
|
void | SetExtentTranslator (vtkExtentTranslator translator) |
| An object that will translate pieces into structured extents. More...
|
|
virtual void | SetFieldData (vtkFieldData arg0) |
| Assign or retrieve a general field data to this data object. More...
|
|
virtual void | SetInformation (vtkInformation arg0) |
| Set/Get the information object associated with this data object. More...
|
|
virtual void | SetMaximumNumberOfPieces (int arg0) |
| Set/Get the maximum number of pieces that can be requested. The maximum number of pieces is meta data for unstructured data sets. It gets set by the source during the update information call. A value of -1 indicates that there is no maximum. More...
|
|
virtual void | SetPipelineInformation (vtkInformation arg0) |
| Get/Set the pipeline information object that owns this data object. More...
|
|
void | SetReleaseDataFlag (int arg0) |
| Turn on/off flag to control whether this object's data is released after being used by a filter. More...
|
|
virtual void | SetRequestExactExtent (int flag) |
| This request flag indicates whether the requester can handle more data than requested. Right now it is used in vtkImageData. Image filters can return more data than requested. The the consumer cannot handle this (i.e. DataSetToDataSetFitler) the image will crop itself. This functionality used to be in ImageToStructuredPoints. More...
|
|
void | SetSource (vtkSource s) |
| Set/Get the source object creating this data object. More...
|
|
virtual void | SetUpdateExtent (int piece, int numPieces, int ghostLevel) |
| A generic way of specifying an update extent. Subclasses must decide what a piece is. When the NumberOfPieces is zero, then no data is requested, and the source will not execute. More...
|
|
void | SetUpdateExtent (int piece, int numPieces) |
| A generic way of specifying an update extent. Subclasses must decide what a piece is. When the NumberOfPieces is zero, then no data is requested, and the source will not execute. More...
|
|
virtual void | SetUpdateExtent (int x0, int x1, int y0, int y1, int z0, int z1) |
| Set the update extent for data objects that use 3D extents. Using this method on data objects that set extents as pieces (such as vtkPolyData or vtkUnstructuredGrid) has no real effect. Don't use the set macro to set the update extent since we don't want this object to be modified just due to a change in update extent. When the volume of the extent is zero (0, -1,..), then no data is requested, and the source will not execute. More...
|
|
virtual void | SetUpdateExtent (IntPtr extent) |
| Set the update extent for data objects that use 3D extents. Using this method on data objects that set extents as pieces (such as vtkPolyData or vtkUnstructuredGrid) has no real effect. Don't use the set macro to set the update extent since we don't want this object to be modified just due to a change in update extent. When the volume of the extent is zero (0, -1,..), then no data is requested, and the source will not execute. More...
|
|
void | SetUpdateExtentToWholeExtent () |
| If the whole input extent is required to generate the requested output extent, this method can be called to set the input update extent to the whole input extent. This method assumes that the whole extent is known (that UpdateInformation has been called) More...
|
|
void | SetUpdateGhostLevel (int level) |
| Set / Get the update ghost level and the update number of ghost levels. Similar to update extent in 3D. More...
|
|
void | SetUpdateNumberOfPieces (int num) |
| Set / Get the update piece and the update number of pieces. Similar to update extent in 3D. More...
|
|
void | SetUpdatePiece (int piece) |
| Set / Get the update piece and the update number of pieces. Similar to update extent in 3D. More...
|
|
virtual void | SetWholeBoundingBox (double x0, double x1, double y0, double y1, double z0, double z1) |
| Set/Get the whole bounding box of this data object. The whole whole bounding box is meta data for data sets It gets set by the source during the update information call. More...
|
|
virtual void | SetWholeBoundingBox (IntPtr bb) |
| Set/Get the whole bounding box of this data object. The whole whole bounding box is meta data for data sets It gets set by the source during the update information call. More...
|
|
virtual void | SetWholeExtent (int x0, int x1, int y0, int y1, int z0, int z1) |
| Set/Get the whole extent of this data object. The whole extent is meta data for structured data sets. It gets set by the source during the update information call. More...
|
|
virtual void | SetWholeExtent (IntPtr extent) |
| Set/Get the whole extent of this data object. The whole extent is meta data for structured data sets. It gets set by the source during the update information call. More...
|
|
int | ShouldIReleaseData () |
| Return flag indicating whether data should be released after use by a filter. More...
|
|
virtual void | TriggerAsynchronousUpdate () |
| WARNING: INTERNAL METHOD - NOT FOR GENERAL USE. THIS METHOD IS PART OF THE PIPELINE UPDATE FUNCTIONALITY. Propagate back up the pipeline for ports and trigger the update on the other side of the port to allow for asynchronous parallel processing in the pipeline. This propagation may early terminate based on the PipelineMTime. More...
|
|
virtual void | Update () |
| Provides opportunity for the data object to insure internal consistency before access. Also causes owning source/filter (if any) to update itself. The Update() method is composed of UpdateInformation(), PropagateUpdateExtent(), TriggerAsynchronousUpdate(), and UpdateData(). More...
|
|
virtual void | UpdateData () |
| WARNING: INTERNAL METHOD - NOT FOR GENERAL USE. THIS METHOD IS PART OF THE PIPELINE UPDATE FUNCTIONALITY. Propagate the update back up the pipeline, and perform the actual work of updating on the way down. When the propagate arrives at a port, block and wait for the asynchronous update to finish on the other side. This propagation may early terminate based on the PipelineMTime. More...
|
|
virtual void | UpdateInformation () |
| WARNING: INTERNAL METHOD - NOT FOR GENERAL USE. THIS METHOD IS PART OF THE PIPELINE UPDATE FUNCTIONALITY. Update all the "easy to update" information about the object such as the extent which will be used to control the update. This propagates all the way up then back down the pipeline. As a by-product the PipelineMTime is updated. More...
|
|
| vtkObject (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
| vtkObject () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|
uint | AddObserver (uint arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
uint | AddObserver (string arg0, vtkCommand arg1, float priority) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
virtual void | DebugOff () |
| Turn debugging output off. More...
|
|
virtual void | DebugOn () |
| Turn debugging output on. More...
|
|
vtkCommand | GetCommand (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
byte | GetDebug () |
| Get the value of the debug flag. More...
|
|
int | HasObserver (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | HasObserver (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | HasObserver (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | HasObserver (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | InvokeEvent (uint arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | InvokeEvent (string arg0, IntPtr callData) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | InvokeEvent (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
int | InvokeEvent (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
virtual void | Modified () |
| Update the modification time for this object. Many filters rely on the modification time to determine if they need to recompute their data. The modification time is a unique monotonically increasing unsigned long integer. More...
|
|
vtkObject | NewInstance () |
| Undocumented Block More...
|
|
void | RemoveAllObservers () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObserver (vtkCommand arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObserver (uint tag) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObservers (uint arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObservers (string arg0, vtkCommand arg1) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObservers (uint arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | RemoveObservers (string arg0) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
void | SetDebug (byte debugFlag) |
| Set the value of the debug flag. A non-zero value turns debugging on. More...
|
|
override string | ToString () |
| Returns the result of calling vtkObject::Print as a C# string. More...
|
|
delegate void | vtkObjectEventHandler (vtkObject sender, vtkObjectEventArgs e) |
| Generic signature for all vtkObject events. More...
|
|
void | RemoveAllHandlersForAllEvents () |
| Call RemoveAllHandlers on each non-null vtkObjectEventRelay. TODO: This method needs to get called by the generated Dispose. Make that happen... More...
|
|
| vtkObjectBase (IntPtr rawCppThis, bool callDisposalMethod, bool strong) |
| Automatically generated constructor - called from generated code. DO NOT call directly. More...
|
|
| vtkObjectBase () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|
virtual void | FastDelete () |
| Delete a reference to this object. This version will not invoke garbage collection and can potentially leak the object if it is part of a reference loop. Use this method only when it is known that the object has another reference and would not be collected if a full garbage collection check were done. More...
|
|
string | GetClassName () |
| Return the class name as a string. This method is defined in all subclasses of vtkObjectBase with the vtkTypeMacro found in vtkSetGet.h. More...
|
|
int | GetReferenceCount () |
| Return the current reference count of this object. More...
|
|
void | SetReferenceCount (int arg0) |
| Sets the reference count. (This is very dangerous, use with care.) More...
|
|
|
static new vtkPolyData | New () |
| Undocumented Block More...
|
|
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). More...
|
|
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). More...
|
|
static new int | IsTypeOf (string type) |
| Undocumented Block More...
|
|
static new vtkPolyData | SafeDownCast (vtkObjectBase o) |
| Undocumented Block More...
|
|
static new vtkPointSet | GetData (vtkInformation info) |
| Shallow and Deep copy. More...
|
|
static new vtkPointSet | GetData (vtkInformationVector v, int i) |
| Shallow and Deep copy. More...
|
|
static new int | IsTypeOf (string type) |
| Undocumented Block More...
|
|
static new vtkPointSet | SafeDownCast (vtkObjectBase o) |
| Undocumented Block More...
|
|
static new vtkDataSet | GetData (vtkInformation info) |
| Normally called by pipeline executives or algoritgms only. This method computes the ghost arrays for a given dataset. More...
|
|
static new vtkDataSet | GetData (vtkInformationVector v, int i) |
| Normally called by pipeline executives or algoritgms only. This method computes the ghost arrays for a given dataset. More...
|
|
static new int | IsTypeOf (string type) |
| Undocumented Block More...
|
|
static new vtkDataSet | SafeDownCast (vtkObjectBase o) |
| Undocumented Block More...
|
|
static new vtkDataObject | New () |
| Undocumented Block More...
|
|
static vtkInformationInformationVectorKey | CELL_DATA_VECTOR () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerPointerKey | DATA_EXTENT () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | DATA_EXTENT_TYPE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | DATA_GEOMETRY_UNMODIFIED () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | DATA_NUMBER_OF_GHOST_LEVELS () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | DATA_NUMBER_OF_PIECES () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationDataObjectKey | DATA_OBJECT () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | DATA_PIECE_NUMBER () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationDoubleKey | DATA_RESOLUTION () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationDoubleVectorKey | DATA_TIME_STEPS () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationStringKey | DATA_TYPE_NAME () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationInformationVectorKey | EDGE_DATA_VECTOR () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_ACTIVE_ATTRIBUTE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationStringKey | FIELD_ARRAY_NAME () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_ARRAY_TYPE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_ASSOCIATION () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_ATTRIBUTE_TYPE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationStringKey | FIELD_NAME () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_NUMBER_OF_COMPONENTS () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_NUMBER_OF_TUPLES () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerKey | FIELD_OPERATION () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationDoubleVectorKey | FIELD_RANGE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformation | GetActiveFieldInformation (vtkInformation info, int fieldAssociation, int attributeType) |
| Return the information object within the input information object's field data corresponding to the specified association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and attribute (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) More...
|
|
static string | GetAssociationTypeAsString (int associationType) |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkDataObject | GetData (vtkInformation info) |
| Key used to put SIL information in the output information by readers. More...
|
|
static vtkDataObject | GetData (vtkInformationVector v, int i) |
| Key used to put SIL information in the output information by readers. More...
|
|
static int | GetGlobalReleaseDataFlag () |
| Turn on/off flag to control whether every object releases its data after being used by a filter. More...
|
|
static vtkInformation | GetNamedFieldInformation (vtkInformation info, int fieldAssociation, string name) |
| Return the information object within the input information object's field data corresponding to the specified association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS) and name. More...
|
|
static new int | IsTypeOf (string type) |
| Undocumented Block More...
|
|
static vtkInformationDoubleVectorKey | ORIGIN () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationIntegerVectorKey | PIECE_EXTENT () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationDoubleVectorKey | PIECE_FIELD_RANGE () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static vtkInformationInformationVectorKey | POINT_DATA_VECTOR () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static void | RemoveNamedFieldInformation (vtkInformation info, int fieldAssociation, string name) |
| Remove the info associated with an array More...
|
|
static vtkInformationDataObjectKey | SIL () |
| Key used to put SIL information in the output information by readers. More...
|
|
static vtkInformationDoubleVectorKey | SPACING () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static new vtkDataObject | SafeDownCast (vtkObjectBase o) |
| Undocumented Block More...
|
|
static vtkInformation | SetActiveAttribute (vtkInformation info, int fieldAssociation, string attributeName, int attributeType) |
| Set the named array to be the active field for the specified type (SCALARS, VECTORS, NORMALS, TCOORDS, or TENSORS) and association (FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). Returns the active field information object and creates on entry if one not found. More...
|
|
static void | SetActiveAttributeInfo (vtkInformation info, int fieldAssociation, int attributeType, string name, int arrayType, int numComponents, int numTuples) |
| Set the name, array type, number of components, and number of tuples within the passed information object for the active attribute of type attributeType (in specified association, FIELD_ASSOCIATION_POINTS or FIELD_ASSOCIATION_CELLS). If there is not an active attribute of the specified type, an entry in the information object is created. If arrayType, numComponents, or numTuples equal to -1, or name=NULL the value is not changed. More...
|
|
static void | SetGlobalReleaseDataFlag (int val) |
| Turn on/off flag to control whether every object releases its data after being used by a filter. More...
|
|
static void | SetPointDataActiveScalarInfo (vtkInformation info, int arrayType, int numComponents) |
| Convenience version of previous method for use (primarily) by the Imaging filters. If arrayType or numComponents == -1, the value is not changed. More...
|
|
static vtkInformationInformationVectorKey | VERTEX_DATA_VECTOR () |
| Given an integer association type, this static method returns a string type for the attribute (i.e. type = 0: returns "Points"). More...
|
|
static new vtkObject | New () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|
static void | BreakOnError () |
| This method is called when vtkErrorMacro executes. It allows the debugger to break on error. More...
|
|
static int | GetGlobalWarningDisplay () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static void | GlobalWarningDisplayOff () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static void | GlobalWarningDisplayOn () |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static new int | IsTypeOf (string type) |
| Undocumented Block More...
|
|
static vtkObject | SafeDownCast (vtkObjectBase o) |
| Undocumented Block More...
|
|
static void | SetGlobalWarningDisplay (int val) |
| This is a global flag that controls whether any debug, warning or error messages are displayed. More...
|
|
static vtkObjectBase | New () |
| Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
|
|
static int | IsTypeOf (string name) |
| Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h. More...
|
|