ActiViz .NET
5.8.0
|
vtkStructuredGrid - topologically regular array of data More...
Public Member Functions | |
vtkStructuredGrid (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkStructuredGrid () | |
Undocumented Block. | |
void | BlankCell (int ptId) |
Methods for supporting blanking of cells. Blanking turns on or off cells in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set. | |
void | BlankPoint (int ptId) |
Methods for supporting blanking of cells. Blanking turns on or off points in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set. | |
override void | CopyStructure (vtkDataSet ds) |
Copy the geometric and topological structure of an input poly data object. | |
override void | Crop () |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent. | |
override void | DeepCopy (vtkDataObject src) |
Shallow and Deep copy. | |
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 API methods. See vtkDataSet for more information. | |
override void | GetCell (int cellId, vtkGenericCell cell) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
byte | GetCellBlanking () |
Returns 1 if there is any visibility constraint on the cells, 0 otherwise. | |
override void | GetCellBounds (int cellId, IntPtr bounds) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override void | GetCellNeighbors (int cellId, vtkIdList ptIds, vtkIdList cellIds) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override void | GetCellPoints (int cellId, vtkIdList ptIds) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override int | GetCellType (int cellId) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
vtkUnsignedCharArray | GetCellVisibilityArray () |
Get the array that defines the blanking (visibility) of each cell. | |
int | GetDataDimension () |
Internal method used by DeepCopy and ShallowCopy. | |
override int | GetDataObjectType () |
Return what type of dataset this is. | |
virtual int[] | GetDimensions () |
Get dimensions of this structured points dataset. | |
virtual void | GetDimensions (IntPtr dim) |
Get dimensions of this structured points dataset. | |
virtual int[] | GetExtent () |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z). | |
virtual void | GetExtent (ref int _arg1, ref int _arg2, ref int _arg3, ref int _arg4, ref int _arg5, ref int _arg6) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z). | |
virtual void | GetExtent (IntPtr _arg) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z). | |
override int | GetExtentType () |
The extent type is a 3D extent. | |
override int | GetMaxCellSize () |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override int | GetNumberOfCells () |
Internal method used by DeepCopy and ShallowCopy. | |
override int | GetNumberOfPoints () |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override double[] | GetPoint (int ptId) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override void | GetPoint (int ptId, IntPtr p) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
void | GetPoint (int i, int j, int k, IntPtr p, bool adjustForExtent) |
Get a point in the grid. If adjustForExtent is true, (i,j,k) is interpreted as a position relative to the beginning of the extent. If adjustForExtent is false, (i,j,k) is interpreted literally and the (i,j,k) point of the grid is returned regardless of the extent beginning. The point coordinate is returned in 'p'. The default adjustForExtent is true. | |
byte | GetPointBlanking () |
Returns 1 if there is any visibility constraint on the points, 0 otherwise. | |
override void | GetPointCells (int ptId, vtkIdList cellIds) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
vtkUnsignedCharArray | GetPointVisibilityArray () |
Get the array that defines the blanking (visibility) of each point. | |
override void | GetScalarRange (IntPtr range) |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
new double[] | GetScalarRange () |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override void | Initialize () |
Standard vtkDataSet API methods. See vtkDataSet for more information. | |
override int | IsA (string type) |
Undocumented Block. | |
byte | IsCellVisible (int cellId) |
Return non-zero value if specified point is visible. These methods should be called only after the dimensions of the grid are set. | |
byte | IsPointVisible (int ptId) |
Return non-zero value if specified point is visible. These methods should be called only after the dimensions of the grid are set. | |
new vtkStructuredGrid | NewInstance () |
Undocumented Block. | |
void | SetCellVisibilityArray (vtkUnsignedCharArray pointVisibility) |
Set an array that defines the (blanking) visibility of the cells in the grid. Make sure that length of the visibility array matches the number of points in the grid. | |
void | SetDimensions (int i, int j, int k) |
following methods are specific to structured grid | |
void | SetDimensions (IntPtr dim) |
following methods are specific to structured grid | |
void | SetExtent (IntPtr extent) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z). | |
void | SetExtent (int x1, int x2, int y1, int y2, int z1, int z2) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z). | |
void | SetPointVisibilityArray (vtkUnsignedCharArray pointVisibility) |
Set an array that defines the (blanking) visibility of the points in the grid. Make sure that length of the visibility array matches the number of points in the grid. | |
override void | ShallowCopy (vtkDataObject src) |
Shallow and Deep copy. | |
void | UnBlankCell (int ptId) |
Methods for supporting blanking of cells. Blanking turns on or off cells in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set. | |
void | UnBlankPoint (int ptId) |
Methods for supporting blanking of cells. Blanking turns on or off points in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set. | |
Static Public Member Functions | |
static new vtkStructuredGrid | New () |
Undocumented Block. | |
static new vtkStructuredGrid | GetData (vtkInformation info) |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent. | |
static new vtkStructuredGrid | GetData (vtkInformationVector v, int i) |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkStructuredGrid | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkStructuredGrid" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "17vtkStructuredGrid" |
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 | vtkStructuredGrid_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkStructuredGrid_BlankCell_01 (HandleRef pThis, int ptId) |
static internal void | vtkStructuredGrid_BlankPoint_02 (HandleRef pThis, int ptId) |
static internal void | vtkStructuredGrid_CopyStructure_03 (HandleRef pThis, HandleRef ds) |
static internal void | vtkStructuredGrid_Crop_04 (HandleRef pThis) |
static internal void | vtkStructuredGrid_DeepCopy_05 (HandleRef pThis, HandleRef src) |
static internal uint | vtkStructuredGrid_GetActualMemorySize_06 (HandleRef pThis) |
static internal IntPtr | vtkStructuredGrid_GetCell_07 (HandleRef pThis, int cellId, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkStructuredGrid_GetCell_08 (HandleRef pThis, int cellId, HandleRef cell) |
static internal byte | vtkStructuredGrid_GetCellBlanking_09 (HandleRef pThis) |
static internal void | vtkStructuredGrid_GetCellBounds_10 (HandleRef pThis, int cellId, IntPtr bounds) |
static internal void | vtkStructuredGrid_GetCellNeighbors_11 (HandleRef pThis, int cellId, HandleRef ptIds, HandleRef cellIds) |
static internal void | vtkStructuredGrid_GetCellPoints_12 (HandleRef pThis, int cellId, HandleRef ptIds) |
static internal int | vtkStructuredGrid_GetCellType_13 (HandleRef pThis, int cellId) |
static internal IntPtr | vtkStructuredGrid_GetCellVisibilityArray_14 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkStructuredGrid_GetData_15 (HandleRef info, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkStructuredGrid_GetData_16 (HandleRef v, int i, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkStructuredGrid_GetDataDimension_17 (HandleRef pThis) |
static internal int | vtkStructuredGrid_GetDataObjectType_18 (HandleRef pThis) |
static internal IntPtr | vtkStructuredGrid_GetDimensions_19 (HandleRef pThis) |
static internal void | vtkStructuredGrid_GetDimensions_20 (HandleRef pThis, IntPtr dim) |
static internal IntPtr | vtkStructuredGrid_GetExtent_21 (HandleRef pThis) |
static internal void | vtkStructuredGrid_GetExtent_22 (HandleRef pThis, ref int _arg1, ref int _arg2, ref int _arg3, ref int _arg4, ref int _arg5, ref int _arg6) |
static internal void | vtkStructuredGrid_GetExtent_23 (HandleRef pThis, IntPtr _arg) |
static internal int | vtkStructuredGrid_GetExtentType_24 (HandleRef pThis) |
static internal int | vtkStructuredGrid_GetMaxCellSize_25 (HandleRef pThis) |
static internal int | vtkStructuredGrid_GetNumberOfCells_26 (HandleRef pThis) |
static internal int | vtkStructuredGrid_GetNumberOfPoints_27 (HandleRef pThis) |
static internal IntPtr | vtkStructuredGrid_GetPoint_28 (HandleRef pThis, int ptId) |
static internal void | vtkStructuredGrid_GetPoint_29 (HandleRef pThis, int ptId, IntPtr p) |
static internal void | vtkStructuredGrid_GetPoint_30 (HandleRef pThis, int i, int j, int k, IntPtr p, byte adjustForExtent) |
static internal byte | vtkStructuredGrid_GetPointBlanking_31 (HandleRef pThis) |
static internal void | vtkStructuredGrid_GetPointCells_32 (HandleRef pThis, int ptId, HandleRef cellIds) |
static internal IntPtr | vtkStructuredGrid_GetPointVisibilityArray_33 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkStructuredGrid_GetScalarRange_34 (HandleRef pThis, IntPtr range) |
static internal IntPtr | vtkStructuredGrid_GetScalarRange_35 (HandleRef pThis) |
static internal void | vtkStructuredGrid_Initialize_36 (HandleRef pThis) |
static internal int | vtkStructuredGrid_IsA_37 (HandleRef pThis, string type) |
static internal byte | vtkStructuredGrid_IsCellVisible_38 (HandleRef pThis, int cellId) |
static internal byte | vtkStructuredGrid_IsPointVisible_39 (HandleRef pThis, int ptId) |
static internal int | vtkStructuredGrid_IsTypeOf_40 (string type) |
static internal IntPtr | vtkStructuredGrid_NewInstance_42 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkStructuredGrid_SafeDownCast_43 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkStructuredGrid_SetCellVisibilityArray_44 (HandleRef pThis, HandleRef pointVisibility) |
static internal void | vtkStructuredGrid_SetDimensions_45 (HandleRef pThis, int i, int j, int k) |
static internal void | vtkStructuredGrid_SetDimensions_46 (HandleRef pThis, IntPtr dim) |
static internal void | vtkStructuredGrid_SetExtent_47 (HandleRef pThis, IntPtr extent) |
static internal void | vtkStructuredGrid_SetExtent_48 (HandleRef pThis, int x1, int x2, int y1, int y2, int z1, int z2) |
static internal void | vtkStructuredGrid_SetPointVisibilityArray_49 (HandleRef pThis, HandleRef pointVisibility) |
static internal void | vtkStructuredGrid_ShallowCopy_50 (HandleRef pThis, HandleRef src) |
static internal void | vtkStructuredGrid_UnBlankCell_51 (HandleRef pThis, int ptId) |
static internal void | vtkStructuredGrid_UnBlankPoint_52 (HandleRef pThis, int ptId) |
Static Private Member Functions | |
static | vtkStructuredGrid () |
Automatically generated type registration mechanics. |
vtkStructuredGrid - topologically regular array of data
Description vtkStructuredGrid is a data object that is a concrete implementation of vtkDataSet. vtkStructuredGrid represents a geometric structure that is a topologically regular array of points. The topology is that of a cube that has been subdivided into a regular array of smaller cubes. Each point/cell can be addressed with i-j-k indices. Examples include finite difference grids.
The order and number of points must match that specified by the dimensions of the grid. The point order increases in i fastest (from 0<=i<dims[0]), then j (0<=j<dims[1]), then k (0<=k<dims[2]) where dims[] are the dimensions of the grid in the i-j-k topological directions. The number of points is dims[0]*dims[1]*dims[2]. The same is true for the cells of the grid. The order and number of cells must match that specified by the dimensions of the grid. The cell order increases in i fastest (from 0<=i<(dims[0]-1)), then j (0<=j<(dims[1]-1)), then k (0<=k<(dims[2]-1)) The number of cells is (dims[0]-1)*(dims[1]-1)*(dims[2]-1).
A unusual feature of vtkStructuredGrid is the ability to blank, or "turn-off" points and cells in the dataset. This is controlled by defining a "blanking array" whose values (0,1) specify whether a point should be blanked or not.
static Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Undocumented Block.
void Kitware.VTK.vtkStructuredGrid.BlankCell | ( | int | ptId | ) |
Methods for supporting blanking of cells. Blanking turns on or off cells in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set.
void Kitware.VTK.vtkStructuredGrid.BlankPoint | ( | int | ptId | ) |
Methods for supporting blanking of cells. Blanking turns on or off points in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set.
override void Kitware.VTK.vtkStructuredGrid.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.vtkStructuredGrid.Crop | ( | ) | [virtual] |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent.
Reimplemented from Kitware.VTK.vtkDataObject.
override void Kitware.VTK.vtkStructuredGrid.DeepCopy | ( | vtkDataObject | src | ) | [virtual] |
Shallow and Deep copy.
Reimplemented from Kitware.VTK.vtkPointSet.
override void Kitware.VTK.vtkStructuredGrid.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.vtkStructuredGrid.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.vtkStructuredGrid.GetCell | ( | int | cellId | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override void Kitware.VTK.vtkStructuredGrid.GetCell | ( | int | cellId, |
vtkGenericCell | cell | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
Returns 1 if there is any visibility constraint on the cells, 0 otherwise.
override void Kitware.VTK.vtkStructuredGrid.GetCellBounds | ( | int | cellId, |
IntPtr | bounds | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override void Kitware.VTK.vtkStructuredGrid.GetCellNeighbors | ( | int | cellId, |
vtkIdList | ptIds, | ||
vtkIdList | cellIds | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override void Kitware.VTK.vtkStructuredGrid.GetCellPoints | ( | int | cellId, |
vtkIdList | ptIds | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override int Kitware.VTK.vtkStructuredGrid.GetCellType | ( | int | cellId | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
Get the array that defines the blanking (visibility) of each cell.
static new vtkStructuredGrid Kitware.VTK.vtkStructuredGrid.GetData | ( | vtkInformation | info | ) | [static] |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent.
Reimplemented from Kitware.VTK.vtkPointSet.
static new vtkStructuredGrid Kitware.VTK.vtkStructuredGrid.GetData | ( | vtkInformationVector | v, |
int | i | ||
) | [static] |
Reallocates and copies to set the Extent to the UpdateExtent. This is used internally when the exact extent is requested, and the source generated more than the update extent.
Reimplemented from Kitware.VTK.vtkPointSet.
Internal method used by DeepCopy and ShallowCopy.
override int Kitware.VTK.vtkStructuredGrid.GetDataObjectType | ( | ) | [virtual] |
Return what type of dataset this is.
Reimplemented from Kitware.VTK.vtkDataSet.
virtual int [] Kitware.VTK.vtkStructuredGrid.GetDimensions | ( | ) | [virtual] |
Get dimensions of this structured points dataset.
virtual void Kitware.VTK.vtkStructuredGrid.GetDimensions | ( | IntPtr | dim | ) | [virtual] |
Get dimensions of this structured points dataset.
virtual int [] Kitware.VTK.vtkStructuredGrid.GetExtent | ( | ) | [virtual] |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z).
virtual void Kitware.VTK.vtkStructuredGrid.GetExtent | ( | ref int | _arg1, |
ref int | _arg2, | ||
ref int | _arg3, | ||
ref int | _arg4, | ||
ref int | _arg5, | ||
ref int | _arg6 | ||
) | [virtual] |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z).
virtual void Kitware.VTK.vtkStructuredGrid.GetExtent | ( | IntPtr | _arg | ) | [virtual] |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z).
override int Kitware.VTK.vtkStructuredGrid.GetExtentType | ( | ) | [virtual] |
The extent type is a 3D extent.
Reimplemented from Kitware.VTK.vtkDataObject.
override int Kitware.VTK.vtkStructuredGrid.GetMaxCellSize | ( | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override int Kitware.VTK.vtkStructuredGrid.GetNumberOfCells | ( | ) | [virtual] |
Internal method used by DeepCopy and ShallowCopy.
Reimplemented from Kitware.VTK.vtkDataSet.
override int Kitware.VTK.vtkStructuredGrid.GetNumberOfPoints | ( | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkPointSet.
override double [] Kitware.VTK.vtkStructuredGrid.GetPoint | ( | int | ptId | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkPointSet.
override void Kitware.VTK.vtkStructuredGrid.GetPoint | ( | int | ptId, |
IntPtr | p | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkPointSet.
void Kitware.VTK.vtkStructuredGrid.GetPoint | ( | int | i, |
int | j, | ||
int | k, | ||
IntPtr | p, | ||
bool | adjustForExtent | ||
) |
Get a point in the grid. If adjustForExtent is true, (i,j,k) is interpreted as a position relative to the beginning of the extent. If adjustForExtent is false, (i,j,k) is interpreted literally and the (i,j,k) point of the grid is returned regardless of the extent beginning. The point coordinate is returned in 'p'. The default adjustForExtent is true.
Returns 1 if there is any visibility constraint on the points, 0 otherwise.
override void Kitware.VTK.vtkStructuredGrid.GetPointCells | ( | int | ptId, |
vtkIdList | cellIds | ||
) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
Get the array that defines the blanking (visibility) of each point.
override void Kitware.VTK.vtkStructuredGrid.GetScalarRange | ( | IntPtr | range | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
new double [] Kitware.VTK.vtkStructuredGrid.GetScalarRange | ( | ) |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkDataSet.
override void Kitware.VTK.vtkStructuredGrid.Initialize | ( | ) | [virtual] |
Standard vtkDataSet API methods. See vtkDataSet for more information.
Reimplemented from Kitware.VTK.vtkPointSet.
override int Kitware.VTK.vtkStructuredGrid.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPointSet.
byte Kitware.VTK.vtkStructuredGrid.IsCellVisible | ( | int | cellId | ) |
Return non-zero value if specified point is visible. These methods should be called only after the dimensions of the grid are set.
byte Kitware.VTK.vtkStructuredGrid.IsPointVisible | ( | int | ptId | ) |
Return non-zero value if specified point is visible. These methods should be called only after the dimensions of the grid are set.
static new int Kitware.VTK.vtkStructuredGrid.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPointSet.
static new vtkStructuredGrid Kitware.VTK.vtkStructuredGrid.New | ( | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkDataObject.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPointSet.
static new vtkStructuredGrid Kitware.VTK.vtkStructuredGrid.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkPointSet.
void Kitware.VTK.vtkStructuredGrid.SetCellVisibilityArray | ( | vtkUnsignedCharArray | pointVisibility | ) |
Set an array that defines the (blanking) visibility of the cells in the grid. Make sure that length of the visibility array matches the number of points in the grid.
void Kitware.VTK.vtkStructuredGrid.SetDimensions | ( | int | i, |
int | j, | ||
int | k | ||
) |
following methods are specific to structured grid
void Kitware.VTK.vtkStructuredGrid.SetDimensions | ( | IntPtr | dim | ) |
following methods are specific to structured grid
void Kitware.VTK.vtkStructuredGrid.SetExtent | ( | IntPtr | extent | ) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z).
void Kitware.VTK.vtkStructuredGrid.SetExtent | ( | int | x1, |
int | x2, | ||
int | y1, | ||
int | y2, | ||
int | z1, | ||
int | z2 | ||
) |
Different ways to set the extent of the data array. The extent should be set before the "Scalars" are set or allocated. The Extent is stored in the order (X, Y, Z).
void Kitware.VTK.vtkStructuredGrid.SetPointVisibilityArray | ( | vtkUnsignedCharArray | pointVisibility | ) |
Set an array that defines the (blanking) visibility of the points in the grid. Make sure that length of the visibility array matches the number of points in the grid.
override void Kitware.VTK.vtkStructuredGrid.ShallowCopy | ( | vtkDataObject | src | ) | [virtual] |
Shallow and Deep copy.
Reimplemented from Kitware.VTK.vtkPointSet.
void Kitware.VTK.vtkStructuredGrid.UnBlankCell | ( | int | ptId | ) |
Methods for supporting blanking of cells. Blanking turns on or off cells in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set.
void Kitware.VTK.vtkStructuredGrid.UnBlankPoint | ( | int | ptId | ) |
Methods for supporting blanking of cells. Blanking turns on or off points in the structured grid, and hence the cells connected to them. These methods should be called only after the dimensions of the grid are set.
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_BlankCell_01 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_BlankPoint_02 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_CopyStructure_03 | ( | HandleRef | pThis, |
HandleRef | ds | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_Crop_04 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_DeepCopy_05 | ( | HandleRef | pThis, |
HandleRef | src | ||
) | [private] |
static internal uint Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetActualMemorySize_06 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCell_07 | ( | HandleRef | pThis, |
int | cellId, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCell_08 | ( | HandleRef | pThis, |
int | cellId, | ||
HandleRef | cell | ||
) | [private] |
static internal byte Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellBlanking_09 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellBounds_10 | ( | HandleRef | pThis, |
int | cellId, | ||
IntPtr | bounds | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellNeighbors_11 | ( | HandleRef | pThis, |
int | cellId, | ||
HandleRef | ptIds, | ||
HandleRef | cellIds | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellPoints_12 | ( | HandleRef | pThis, |
int | cellId, | ||
HandleRef | ptIds | ||
) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellType_13 | ( | HandleRef | pThis, |
int | cellId | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetCellVisibilityArray_14 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetData_15 | ( | HandleRef | info, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetData_16 | ( | HandleRef | v, |
int | i, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetDataDimension_17 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetDataObjectType_18 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetDimensions_19 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetDimensions_20 | ( | HandleRef | pThis, |
IntPtr | dim | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetExtent_21 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetExtent_22 | ( | HandleRef | pThis, |
ref int | _arg1, | ||
ref int | _arg2, | ||
ref int | _arg3, | ||
ref int | _arg4, | ||
ref int | _arg5, | ||
ref int | _arg6 | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetExtent_23 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetExtentType_24 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetMaxCellSize_25 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetNumberOfCells_26 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetNumberOfPoints_27 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPoint_28 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPoint_29 | ( | HandleRef | pThis, |
int | ptId, | ||
IntPtr | p | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPoint_30 | ( | HandleRef | pThis, |
int | i, | ||
int | j, | ||
int | k, | ||
IntPtr | p, | ||
byte | adjustForExtent | ||
) | [private] |
static internal byte Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPointBlanking_31 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPointCells_32 | ( | HandleRef | pThis, |
int | ptId, | ||
HandleRef | cellIds | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetPointVisibilityArray_33 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetScalarRange_34 | ( | HandleRef | pThis, |
IntPtr | range | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_GetScalarRange_35 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_Initialize_36 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_IsA_37 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal byte Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_IsCellVisible_38 | ( | HandleRef | pThis, |
int | cellId | ||
) | [private] |
static internal byte Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_IsPointVisible_39 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
static internal int Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_IsTypeOf_40 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_NewInstance_42 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SafeDownCast_43 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetCellVisibilityArray_44 | ( | HandleRef | pThis, |
HandleRef | pointVisibility | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetDimensions_45 | ( | HandleRef | pThis, |
int | i, | ||
int | j, | ||
int | k | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetDimensions_46 | ( | HandleRef | pThis, |
IntPtr | dim | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetExtent_47 | ( | HandleRef | pThis, |
IntPtr | extent | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetExtent_48 | ( | HandleRef | pThis, |
int | x1, | ||
int | x2, | ||
int | y1, | ||
int | y2, | ||
int | z1, | ||
int | z2 | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_SetPointVisibilityArray_49 | ( | HandleRef | pThis, |
HandleRef | pointVisibility | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_ShallowCopy_50 | ( | HandleRef | pThis, |
HandleRef | src | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_UnBlankCell_51 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
static internal void Kitware.VTK.vtkStructuredGrid.vtkStructuredGrid_UnBlankPoint_52 | ( | HandleRef | pThis, |
int | ptId | ||
) | [private] |
new readonly string Kitware.VTK.vtkStructuredGrid.MRClassNameKey = "17vtkStructuredGrid" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkPointSet.
new const string Kitware.VTK.vtkStructuredGrid.MRFullTypeName = "Kitware.VTK.vtkStructuredGrid" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkPointSet.