ActiViz .NET
5.8.0
|
vtkCellLocatorInterpolatedVelocityField - A concrete class for obtaining the interpolated velocity values at a point. More...
Public Member Functions | |
vtkCellLocatorInterpolatedVelocityField (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
vtkCellLocatorInterpolatedVelocityField () | |
Construct a vtkCellLocatorInterpolatedVelocityField without an initial dataset. Caching is set on and LastCellId is set to -1. | |
override void | AddDataSet (vtkDataSet dataset) |
Add a dataset coupled with a cell locator (of type vtkAbstractCellLocator) for vector function evaluation. Note the use of a vtkAbstractCellLocator enables robust cell location. If more than one dataset is added, the evaluation point is searched in all until a match is found. THIS FUNCTION DOES NOT CHANGE THE REFERENCE COUNT OF dataset FOR THREAD SAFETY REASONS. | |
override void | CopyParameters (vtkAbstractInterpolatedVelocityField from) |
Import parameters. Sub-classes can add more after chaining. | |
override int | FunctionValues (IntPtr x, IntPtr f) |
Evaluate the velocity field f at point (x, y, z). | |
virtual vtkAbstractCellLocator | GetCellLocatorPrototype () |
Get the prototype of the cell locator that is used for interpolating the velocity field during integration. | |
virtual vtkAbstractCellLocator | GetLastCellLocator () |
Get the cell locator attached to the most recently visited dataset. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkCellLocatorInterpolatedVelocityField | NewInstance () |
Undocumented Block. | |
void | SetCellLocatorPrototype (vtkAbstractCellLocator prototype) |
Set a prototype of the cell locator that is used for interpolating the velocity field during integration. | |
override void | SetLastCellId (int c, int dataindex) |
Set the cell id cached by the last evaluation within a specified dataset. | |
override void | SetLastCellId (int c) |
Set the cell id cached by the last evaluation. | |
Static Public Member Functions | |
static new vtkCellLocatorInterpolatedVelocityField | New () |
Construct a vtkCellLocatorInterpolatedVelocityField without an initial dataset. Caching is set on and LastCellId is set to -1. | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkCellLocatorInterpolatedVelocityField | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkCellLocatorInterpolatedVelocityField" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "39vtkCellLocatorInterpolatedVelocityField" |
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 | vtkCellLocatorInterpolatedVelocityField_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkCellLocatorInterpolatedVelocityField_AddDataSet_01 (HandleRef pThis, HandleRef dataset) |
static internal void | vtkCellLocatorInterpolatedVelocityField_CopyParameters_02 (HandleRef pThis, HandleRef from) |
static internal int | vtkCellLocatorInterpolatedVelocityField_FunctionValues_03 (HandleRef pThis, IntPtr x, IntPtr f) |
static internal IntPtr | vtkCellLocatorInterpolatedVelocityField_GetCellLocatorPrototype_04 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkCellLocatorInterpolatedVelocityField_GetLastCellLocator_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkCellLocatorInterpolatedVelocityField_IsA_06 (HandleRef pThis, string type) |
static internal int | vtkCellLocatorInterpolatedVelocityField_IsTypeOf_07 (string type) |
static internal IntPtr | vtkCellLocatorInterpolatedVelocityField_NewInstance_09 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkCellLocatorInterpolatedVelocityField_SafeDownCast_10 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkCellLocatorInterpolatedVelocityField_SetCellLocatorPrototype_11 (HandleRef pThis, HandleRef prototype) |
static internal void | vtkCellLocatorInterpolatedVelocityField_SetLastCellId_12 (HandleRef pThis, int c, int dataindex) |
static internal void | vtkCellLocatorInterpolatedVelocityField_SetLastCellId_13 (HandleRef pThis, int c) |
Static Private Member Functions | |
static | vtkCellLocatorInterpolatedVelocityField () |
Automatically generated type registration mechanics. |
vtkCellLocatorInterpolatedVelocityField - A concrete class for obtaining the interpolated velocity values at a point.
Description vtkCellLocatorInterpolatedVelocityField acts as a continuous velocity field via cell interpolation on a vtkDataSet, NumberOfIndependentVariables = 4 (x,y,z,t) and NumberOfFunctions = 3 (u,v,w). As a concrete sub-class of vtkAbstractInterpolatedVelocityField, it adopts vtkAbstractCellLocator's sub-classes, e.g., vtkCellLocator and vtkModifiedBSPTree, without the use of vtkPointLocator ( employed by vtkDataSet/vtkPointSet::FindCell() in vtkInterpolatedVelocityField ). vtkCellLocatorInterpolatedVelocityField adopts one level of cell caching. Specifically, if the next point is still within the previous cell, cell location is then simply skipped and vtkCell:: EvaluatePosition() is called to obtain the new parametric coordinates and weights that are used to interpolate the velocity function values across the vertices of this cell. Otherwise a global cell (the target containing the next point) location is instead directly invoked, without exploiting the clue that vtkInterpolatedVelocityField makes use of from the previous cell (an immediate neighbor). Although ignoring the neighbor cell may incur a relatively high computational cost, vtkCellLocatorInterpolatedVelocityField is more robust in locating the target cell than its sibling class vtkInterpolatedVelocityField.
static Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
Construct a vtkCellLocatorInterpolatedVelocityField without an initial dataset. Caching is set on and LastCellId is set to -1.
override void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.AddDataSet | ( | vtkDataSet | dataset | ) | [virtual] |
Add a dataset coupled with a cell locator (of type vtkAbstractCellLocator) for vector function evaluation. Note the use of a vtkAbstractCellLocator enables robust cell location. If more than one dataset is added, the evaluation point is searched in all until a match is found. THIS FUNCTION DOES NOT CHANGE THE REFERENCE COUNT OF dataset FOR THREAD SAFETY REASONS.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
override void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.CopyParameters | ( | vtkAbstractInterpolatedVelocityField | from | ) | [virtual] |
Import parameters. Sub-classes can add more after chaining.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
override void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.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.vtkAbstractInterpolatedVelocityField.
override int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.FunctionValues | ( | IntPtr | x, |
IntPtr | f | ||
) | [virtual] |
Evaluate the velocity field f at point (x, y, z).
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
virtual vtkAbstractCellLocator Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.GetCellLocatorPrototype | ( | ) | [virtual] |
Get the prototype of the cell locator that is used for interpolating the velocity field during integration.
virtual vtkAbstractCellLocator Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.GetLastCellLocator | ( | ) | [virtual] |
Get the cell locator attached to the most recently visited dataset.
override int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
static new int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
static new vtkCellLocatorInterpolatedVelocityField Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.New | ( | ) | [static] |
Construct a vtkCellLocatorInterpolatedVelocityField without an initial dataset. Caching is set on and LastCellId is set to -1.
Reimplemented from Kitware.VTK.vtkObject.
new vtkCellLocatorInterpolatedVelocityField Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.NewInstance | ( | ) |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
static new vtkCellLocatorInterpolatedVelocityField Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.SetCellLocatorPrototype | ( | vtkAbstractCellLocator | prototype | ) |
Set a prototype of the cell locator that is used for interpolating the velocity field during integration.
override void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.SetLastCellId | ( | int | c, |
int | dataindex | ||
) | [virtual] |
Set the cell id cached by the last evaluation within a specified dataset.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
override void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.SetLastCellId | ( | int | c | ) | [virtual] |
Set the cell id cached by the last evaluation.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
static internal void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_AddDataSet_01 | ( | HandleRef | pThis, |
HandleRef | dataset | ||
) | [private] |
static internal void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_CopyParameters_02 | ( | HandleRef | pThis, |
HandleRef | from | ||
) | [private] |
static internal int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_FunctionValues_03 | ( | HandleRef | pThis, |
IntPtr | x, | ||
IntPtr | f | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_GetCellLocatorPrototype_04 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_GetLastCellLocator_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_IsA_06 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_IsTypeOf_07 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_New | ( | ref uint | mteStatus, |
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_NewInstance_09 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_SafeDownCast_10 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_SetCellLocatorPrototype_11 | ( | HandleRef | pThis, |
HandleRef | prototype | ||
) | [private] |
static internal void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_SetLastCellId_12 | ( | HandleRef | pThis, |
int | c, | ||
int | dataindex | ||
) | [private] |
static internal void Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.vtkCellLocatorInterpolatedVelocityField_SetLastCellId_13 | ( | HandleRef | pThis, |
int | c | ||
) | [private] |
new readonly string Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.MRClassNameKey = "39vtkCellLocatorInterpolatedVelocityField" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.
new const string Kitware.VTK.vtkCellLocatorInterpolatedVelocityField.MRFullTypeName = "Kitware.VTK.vtkCellLocatorInterpolatedVelocityField" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkAbstractInterpolatedVelocityField.