VTK
9.1.0
|
Superclass for all sources, filters, and sinks in VTK. More...
#include <vtkAlgorithm.h>
Public Types | |
enum | DesiredOutputPrecision { SINGLE_PRECISION , DOUBLE_PRECISION , DEFAULT_PRECISION } |
Values used for setting the desired output precision for various algorithms. More... | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual vtkTypeBool | IsA (const char *type) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
vtkAlgorithm * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
int | HasExecutive () |
Check whether this algorithm has an assigned executive. | |
vtkExecutive * | GetExecutive () |
Get this algorithm's executive. | |
virtual void | SetExecutive (vtkExecutive *executive) |
Set this algorithm's executive. | |
virtual vtkTypeBool | ProcessRequest (vtkInformation *request, vtkInformationVector **inInfo, vtkInformationVector *outInfo) |
Upstream/Downstream requests form the generalized interface through which executives invoke a algorithm's functionality. | |
vtkTypeBool | ProcessRequest (vtkInformation *request, vtkCollection *inInfo, vtkInformationVector *outInfo) |
Version of ProcessRequest() that is wrapped. | |
virtual int | ComputePipelineMTime (vtkInformation *request, vtkInformationVector **inInfoVec, vtkInformationVector *outInfoVec, int requestFromOutputPort, vtkMTimeType *mtime) |
A special version of ProcessRequest meant specifically for the pipeline modified time request. | |
virtual int | ModifyRequest (vtkInformation *request, int when) |
This method gives the algorithm a chance to modify the contents of a request before or after (specified in the when argument) it is forwarded. | |
vtkInformation * | GetInputPortInformation (int port) |
Get the information object associated with an input port. | |
vtkInformation * | GetOutputPortInformation (int port) |
Get the information object associated with an output port. | |
int | GetNumberOfInputPorts () |
Get the number of input ports used by the algorithm. | |
int | GetNumberOfOutputPorts () |
Get the number of output ports provided by the algorithm. | |
void | SetProgress (double) |
SetProgress is deprecated. | |
void | UpdateProgress (double amount) |
Update the progress of the process object. | |
virtual void | SetInputArrayToProcess (int idx, int port, int connection, const char *fieldAssociation, const char *attributeTypeorName) |
String based versions of SetInputArrayToProcess(). | |
vtkInformation * | GetInputArrayInformation (int idx) |
Get the info object for the specified input array to this algorithm. | |
void | RemoveAllInputs () |
Remove all the input data. | |
vtkDataObject * | GetOutputDataObject (int port) |
Get the data object that will contain the algorithm output for the given port. | |
vtkDataObject * | GetInputDataObject (int port, int connection) |
Get the data object that will contain the algorithm input for the given port and given connection. | |
virtual void | RemoveInputConnection (int port, vtkAlgorithmOutput *input) |
Remove a connection from the given input port index. | |
virtual void | RemoveInputConnection (int port, int idx) |
Remove a connection given by index idx. | |
virtual void | RemoveAllInputConnections (int port) |
Removes all input connections. | |
virtual void | SetInputDataObject (int port, vtkDataObject *data) |
Sets the data-object as an input on the given port index. | |
virtual void | SetInputDataObject (vtkDataObject *data) |
virtual void | AddInputDataObject (int port, vtkDataObject *data) |
Add the data-object as an input to this given port. | |
virtual void | AddInputDataObject (vtkDataObject *data) |
vtkAlgorithmOutput * | GetOutputPort (int index) |
Get a proxy object corresponding to the given output port of this algorithm. | |
vtkAlgorithmOutput * | GetOutputPort () |
int | GetNumberOfInputConnections (int port) |
Get the number of inputs currently connected to a port. | |
int | GetTotalNumberOfInputConnections () |
Get the total number of inputs for this algorithm. | |
vtkAlgorithmOutput * | GetInputConnection (int port, int index) |
Get the algorithm output port connected to an input port. | |
vtkAlgorithm * | GetInputAlgorithm (int port, int index, int &algPort) |
Returns the algorithm and the output port index of that algorithm connected to a port-index pair. | |
vtkAlgorithm * | GetInputAlgorithm (int port, int index) |
Returns the algorithm connected to a port-index pair. | |
vtkAlgorithm * | GetInputAlgorithm () |
Equivalent to GetInputAlgorithm(0, 0). | |
vtkExecutive * | GetInputExecutive (int port, int index) |
Returns the executive associated with a particular input connection. | |
vtkExecutive * | GetInputExecutive () |
Equivalent to GetInputExecutive(0, 0) | |
vtkInformation * | GetInputInformation (int port, int index) |
Return the information object that is associated with a particular input connection. | |
vtkInformation * | GetInputInformation () |
Equivalent to GetInputInformation(0, 0) | |
vtkInformation * | GetOutputInformation (int port) |
Return the information object that is associated with a particular output port. | |
virtual vtkTypeBool | Update (int port, vtkInformationVector *requests) |
This method enables the passing of data requests to the algorithm to be used during execution (in addition to bringing a particular port up-to-date). | |
virtual vtkTypeBool | Update (vtkInformation *requests) |
Convenience method to update an algorithm after passing requests to its first output port. | |
virtual int | UpdatePiece (int piece, int numPieces, int ghostLevels, const int extents[6]=nullptr) |
Convenience method to update an algorithm after passing requests to its first output port. | |
virtual int | UpdateExtent (const int extents[6]) |
Convenience method to update an algorithm after passing requests to its first output port. | |
virtual int | UpdateTimeStep (double time, int piece=-1, int numPieces=1, int ghostLevels=0, const int extents[6]=nullptr) |
Convenience method to update an algorithm after passing requests to its first output port. | |
virtual void | UpdateInformation () |
Bring the algorithm's information up-to-date. | |
virtual void | UpdateDataObject () |
Create output object(s). | |
virtual void | PropagateUpdateExtent () |
Propagate meta-data upstream. | |
virtual void | UpdateWholeExtent () |
Bring this algorithm's outputs up-to-date. | |
void | ConvertTotalInputToPortConnection (int ind, int &port, int &conn) |
Convenience routine to convert from a linear ordering of input connections to a port/connection pair. | |
virtual vtkInformation * | GetInformation () |
Set/Get the information object associated with this algorithm. | |
virtual void | SetInformation (vtkInformation *) |
Set/Get the information object associated with this algorithm. | |
void | Register (vtkObjectBase *o) override |
Participate in garbage collection. | |
void | UnRegister (vtkObjectBase *o) override |
Participate in garbage collection. | |
virtual void | SetAbortExecute (vtkTypeBool) |
Set/Get the AbortExecute flag for the process object. | |
virtual vtkTypeBool | GetAbortExecute () |
Set/Get the AbortExecute flag for the process object. | |
virtual void | AbortExecuteOn () |
Set/Get the AbortExecute flag for the process object. | |
virtual void | AbortExecuteOff () |
Set/Get the AbortExecute flag for the process object. | |
virtual double | GetProgress () |
Get the execution progress of a process object. | |
void | SetProgressShiftScale (double shift, double scale) |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress is called. | |
virtual double | GetProgressShift () |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress is called. | |
virtual double | GetProgressScale () |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress is called. | |
void | SetProgressText (const char *ptext) |
Set the current text message associated with the progress state. | |
virtual char * | GetProgressText () |
Set the current text message associated with the progress state. | |
virtual unsigned long | GetErrorCode () |
The error code contains a possible error that occurred while reading or writing the file. | |
virtual void | SetInputArrayToProcess (int idx, int port, int connection, int fieldAssociation, const char *name) |
Set the input data arrays that this algorithm will process. | |
virtual void | SetInputArrayToProcess (int idx, int port, int connection, int fieldAssociation, int fieldAttributeType) |
Set the input data arrays that this algorithm will process. | |
virtual void | SetInputArrayToProcess (int idx, vtkInformation *info) |
Set the input data arrays that this algorithm will process. | |
virtual void | SetInputConnection (int port, vtkAlgorithmOutput *input) |
Set the connection for the given input port index. | |
virtual void | SetInputConnection (vtkAlgorithmOutput *input) |
Set the connection for the given input port index. | |
virtual void | AddInputConnection (int port, vtkAlgorithmOutput *input) |
Add a connection to the given input port index. | |
virtual void | AddInputConnection (vtkAlgorithmOutput *input) |
Add a connection to the given input port index. | |
virtual void | Update (int port) |
Bring this algorithm's outputs up-to-date. | |
virtual void | Update () |
Bring this algorithm's outputs up-to-date. | |
virtual void | SetReleaseDataFlag (int) |
Turn release data flag on or off for all output ports. | |
virtual int | GetReleaseDataFlag () |
Turn release data flag on or off for all output ports. | |
void | ReleaseDataFlagOn () |
Turn release data flag on or off for all output ports. | |
void | ReleaseDataFlagOff () |
Turn release data flag on or off for all output ports. | |
int | UpdateExtentIsEmpty (vtkInformation *pinfo, vtkDataObject *output) |
This detects when the UpdateExtent will generate no data This condition is satisfied when the UpdateExtent has zero volume (0,-1,...) or the UpdateNumberOfPieces is 0. | |
int | UpdateExtentIsEmpty (vtkInformation *pinfo, int extentType) |
This detects when the UpdateExtent will generate no data This condition is satisfied when the UpdateExtent has zero volume (0,-1,...) or the UpdateNumberOfPieces is 0. | |
int * | GetUpdateExtent () |
These functions return the update extent for output ports that use 3D extents. | |
int * | GetUpdateExtent (int port) |
These functions return the update extent for output ports that use 3D extents. | |
void | GetUpdateExtent (int &x0, int &x1, int &y0, int &y1, int &z0, int &z1) |
These functions return the update extent for output ports that use 3D extents. | |
void | GetUpdateExtent (int port, int &x0, int &x1, int &y0, int &y1, int &z0, int &z1) |
These functions return the update extent for output ports that use 3D extents. | |
void | GetUpdateExtent (int extent[6]) |
These functions return the update extent for output ports that use 3D extents. | |
void | GetUpdateExtent (int port, int extent[6]) |
These functions return the update extent for output ports that use 3D extents. | |
int | GetUpdatePiece () |
These functions return the update extent for output ports that use piece extents. | |
int | GetUpdatePiece (int port) |
These functions return the update extent for output ports that use piece extents. | |
int | GetUpdateNumberOfPieces () |
These functions return the update extent for output ports that use piece extents. | |
int | GetUpdateNumberOfPieces (int port) |
These functions return the update extent for output ports that use piece extents. | |
int | GetUpdateGhostLevel () |
These functions return the update extent for output ports that use piece extents. | |
int | GetUpdateGhostLevel (int port) |
These functions return the update extent for output ports that use piece extents. | |
void | SetProgressObserver (vtkProgressObserver *) |
If an ProgressObserver is set, the algorithm will report progress through it rather than directly. | |
virtual vtkProgressObserver * | GetProgressObserver () |
If an ProgressObserver is set, the algorithm will report progress through it rather than directly. | |
Public Member Functions inherited from vtkObject | |
vtkBaseTypeMacro (vtkObject, vtkObjectBase) | |
virtual void | DebugOn () |
Turn debugging output on. | |
virtual void | DebugOff () |
Turn debugging output off. | |
bool | GetDebug () |
Get the value of the debug flag. | |
void | SetDebug (bool debugFlag) |
Set the value of the debug flag. | |
virtual void | Modified () |
Update the modification time for this object. | |
virtual vtkMTimeType | GetMTime () |
Return this object's modified time. | |
void | PrintSelf (ostream &os, vtkIndent indent) override |
Methods invoked by print to print information about the object including superclasses. | |
void | RemoveObserver (unsigned long tag) |
void | RemoveObservers (unsigned long event) |
void | RemoveObservers (const char *event) |
void | RemoveAllObservers () |
vtkTypeBool | HasObserver (unsigned long event) |
vtkTypeBool | HasObserver (const char *event) |
int | InvokeEvent (unsigned long event) |
int | InvokeEvent (const char *event) |
unsigned long | AddObserver (unsigned long event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
unsigned long | AddObserver (const char *event, vtkCommand *, float priority=0.0f) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkCommand * | GetCommand (unsigned long tag) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObserver (vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
void | RemoveObservers (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (unsigned long event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
vtkTypeBool | HasObserver (const char *event, vtkCommand *) |
Allow people to add/remove/invoke observers (callbacks) to any VTK object. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Overloads to AddObserver that allow developers to add class member functions as callbacks for events. | |
template<class U , class T > | |
unsigned long | AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f) |
Allow user to set the AbortFlagOn() with the return value of the callback method. | |
int | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
int | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. | |
virtual vtkTypeBool | IsA (const char *name) |
Return 1 if this class is the same type of (or a subclass of) the named class. | |
virtual vtkIdType | GetNumberOfGenerationsFromBase (const char *name) |
Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
virtual void | Delete () |
Delete a VTK object. | |
virtual void | FastDelete () |
Delete a reference to this object. | |
void | InitializeObjectBase () |
void | Print (ostream &os) |
Print an object to an ostream. | |
virtual void | Register (vtkObjectBase *o) |
Increase the reference count (mark as used by another object). | |
virtual void | UnRegister (vtkObjectBase *o) |
Decrease the reference count (release by another object). | |
int | GetReferenceCount () |
Return the current reference count of this object. | |
void | SetReferenceCount (int) |
Sets the reference count. | |
bool | GetIsInMemkind () const |
A local state flag that remembers whether this object lives in the normal or extended memory space. | |
virtual void | PrintHeader (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
virtual void | PrintTrailer (ostream &os, vtkIndent indent) |
Methods invoked by print to print information about the object including superclasses. | |
Static Public Member Functions | |
static vtkAlgorithm * | New () |
static vtkTypeBool | IsTypeOf (const char *type) |
static vtkAlgorithm * | SafeDownCast (vtkObjectBase *o) |
static vtkInformationIntegerKey * | INPUT_IS_OPTIONAL () |
Keys used to specify input port requirements. | |
static vtkInformationIntegerKey * | INPUT_IS_REPEATABLE () |
static vtkInformationInformationVectorKey * | INPUT_REQUIRED_FIELDS () |
static vtkInformationStringVectorKey * | INPUT_REQUIRED_DATA_TYPE () |
static vtkInformationInformationVectorKey * | INPUT_ARRAYS_TO_PROCESS () |
static vtkInformationIntegerKey * | INPUT_PORT () |
static vtkInformationIntegerKey * | INPUT_CONNECTION () |
static vtkInformationIntegerKey * | CAN_PRODUCE_SUB_EXTENT () |
This key tells the executive that a particular output port is capable of producing an arbitrary subextent of the whole extent. | |
static vtkInformationIntegerKey * | CAN_HANDLE_PIECE_REQUEST () |
Key that tells the pipeline that a particular algorithm can or cannot handle piece request. | |
static void | SetDefaultExecutivePrototype (vtkExecutive *proto) |
If the DefaultExecutivePrototype is set, a copy of it is created in CreateDefaultExecutive() using NewInstance(). | |
Static Public Member Functions inherited from vtkObject | |
static vtkObject * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | BreakOnError () |
This method is called when vtkErrorMacro executes. | |
static void | SetGlobalWarningDisplay (int val) |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOn () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static void | GlobalWarningDisplayOff () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
static int | GetGlobalWarningDisplay () |
This is a global flag that controls whether any debug, warning or error messages are displayed. | |
Static Public Member Functions inherited from vtkObjectBase | |
static vtkTypeBool | IsTypeOf (const char *name) |
Return 1 if this class type is the same type of (or a subclass of) the named class. | |
static vtkIdType | GetNumberOfGenerationsFromBaseType (const char *name) |
Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). | |
static vtkObjectBase * | New () |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. | |
static void | SetMemkindDirectory (const char *directoryname) |
The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. | |
static bool | GetUsingMemkind () |
A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. | |
Public Attributes | |
vtkTypeBool | AbortExecute |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkAlgorithm () | |
~vtkAlgorithm () override | |
virtual int | FillInputPortInformation (int port, vtkInformation *info) |
Fill the input port information objects for this algorithm. | |
virtual int | FillOutputPortInformation (int port, vtkInformation *info) |
Fill the output port information objects for this algorithm. | |
virtual void | SetNumberOfInputPorts (int n) |
Set the number of input ports used by the algorithm. | |
virtual void | SetNumberOfOutputPorts (int n) |
Set the number of output ports provided by the algorithm. | |
int | InputPortIndexInRange (int index, const char *action) |
int | OutputPortIndexInRange (int index, const char *action) |
int | GetInputArrayAssociation (int idx, vtkInformationVector **inputVector) |
Get the assocition of the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass. | |
vtkInformation * | GetInputArrayFieldInformation (int idx, vtkInformationVector **inputVector) |
This method takes in an index (as specified in SetInputArrayToProcess) and a pipeline information vector. | |
virtual vtkExecutive * | CreateDefaultExecutive () |
Create a default executive. | |
void | ReportReferences (vtkGarbageCollector *) override |
virtual void | SetNthInputConnection (int port, int index, vtkAlgorithmOutput *input) |
Replace the Nth connection on the given input port. | |
virtual void | SetNumberOfInputConnections (int port, int n) |
Set the number of input connections on the given input port. | |
void | SetInputDataInternal (int port, vtkDataObject *input) |
These methods are used by subclasses to implement methods to set data objects directly as input. | |
void | AddInputDataInternal (int port, vtkDataObject *input) |
int | GetInputArrayAssociation (int idx, int connection, vtkInformationVector **inputVector) |
Filters that have multiple connections on one port can use this signature. | |
int | GetInputArrayAssociation (int idx, vtkDataObject *input) |
Filters that have multiple connections on one port can use this signature. | |
vtkDataArray * | GetInputArrayToProcess (int idx, vtkInformationVector **inputVector) |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass. | |
vtkDataArray * | GetInputArrayToProcess (int idx, vtkInformationVector **inputVector, int &association) |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass. | |
vtkDataArray * | GetInputArrayToProcess (int idx, int connection, vtkInformationVector **inputVector) |
Filters that have multiple connections on one port can use this signature. | |
vtkDataArray * | GetInputArrayToProcess (int idx, int connection, vtkInformationVector **inputVector, int &association) |
Filters that have multiple connections on one port can use this signature. | |
vtkDataArray * | GetInputArrayToProcess (int idx, vtkDataObject *input) |
Filters that have multiple connections on one port can use this signature. | |
vtkDataArray * | GetInputArrayToProcess (int idx, vtkDataObject *input, int &association) |
Filters that have multiple connections on one port can use this signature. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, vtkInformationVector **inputVector) |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, vtkInformationVector **inputVector, int &association) |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, int connection, vtkInformationVector **inputVector) |
Filters that have multiple connections on one port can use this signature. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, int connection, vtkInformationVector **inputVector, int &association) |
Filters that have multiple connections on one port can use this signature. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, vtkDataObject *input) |
Filters that have multiple connections on one port can use this signature. | |
vtkAbstractArray * | GetInputAbstractArrayToProcess (int idx, vtkDataObject *input, int &association) |
Filters that have multiple connections on one port can use this signature. | |
Protected Member Functions inherited from vtkObject | |
vtkObject () | |
~vtkObject () override | |
void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override |
void | InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr) |
These methods allow a command to exclusively grab all events. | |
void | InternalReleaseFocus () |
These methods allow a command to exclusively grab all events. | |
Protected Member Functions inherited from vtkObjectBase | |
vtkObjectBase () | |
virtual | ~vtkObjectBase () |
virtual void | RegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) |
virtual void | ReportReferences (vtkGarbageCollector *) |
vtkObjectBase (const vtkObjectBase &) | |
void | operator= (const vtkObjectBase &) |
Static Protected Member Functions | |
static vtkInformationIntegerKey * | PORT_REQUIREMENTS_FILLED () |
Static Protected Member Functions inherited from vtkObjectBase | |
static vtkMallocingFunction | GetCurrentMallocFunction () |
static vtkReallocingFunction | GetCurrentReallocFunction () |
static vtkFreeingFunction | GetCurrentFreeFunction () |
static vtkFreeingFunction | GetAlternateFreeFunction () |
Protected Attributes | |
vtkInformation * | Information |
double | Progress |
char * | ProgressText |
vtkProgressObserver * | ProgressObserver |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
Protected Attributes inherited from vtkObjectBase | |
std::atomic< int32_t > | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Static Protected Attributes | |
static vtkExecutive * | DefaultExecutivePrototype |
unsigned long | ErrorCode |
The error code contains a possible error that occurred while reading or writing the file. | |
virtual void | SetErrorCode (unsigned long) |
The error code contains a possible error that occurred while reading or writing the file. | |
Superclass for all sources, filters, and sinks in VTK.
vtkAlgorithm is the superclass for all sources, filters, and sinks in VTK. It defines a generalized interface for executing data processing algorithms. Pipeline connections are associated with input and output ports that are independent of the type of data passing through the connections.
Instances may be used independently or within pipelines with a variety of architectures and update mechanisms. Pipelines are controlled by instances of vtkExecutive. Every vtkAlgorithm instance has an associated vtkExecutive when it is used in a pipeline. The executive is responsible for data flow.
Definition at line 122 of file vtkAlgorithm.h.
typedef vtkObject vtkAlgorithm::Superclass |
Definition at line 126 of file vtkAlgorithm.h.
Values used for setting the desired output precision for various algorithms.
Currently, the following algorithms support changing their output precision: vtkAppendPolyData, vtkCleanPolyData, vtkClipPolyData, vtkConnectivityFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay3D, vtkFeatureEdges, vtkGlyph3D, vtkHedgeHog, vtkMaskPoints, vtkPolyDataConnectivityFilter, vtkSmoothPolyDataFilter, vtkStaticCleanPolyData, vtkThresholdPoints, vtkTubeFilter, vtkAppendPoints, vtkTransformFilter, vtkTransformPolyDataFilter, vtkLinearToQuadraticCellsFilter, vtkProcrustesAlignmentFilter, vtkAdaptiveSubdivisionFilter, vtkBoundedPointSource, vtkArcSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkLineSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkImageToPoints, vtkDepthImageToPointCloud. SINGLE_PRECISION - Output single-precision floating-point (i.e. float) DOUBLE_PRECISION - Output double-precision floating-point (i.e. double) DEFAULT_PRECISION - Output precision should match the input precision.
Enumerator | |
---|---|
SINGLE_PRECISION | |
DOUBLE_PRECISION | |
DEFAULT_PRECISION |
Definition at line 149 of file vtkAlgorithm.h.
|
protected |
|
overrideprotected |
|
static |
|
static |
|
virtual |
Return 1 if this class 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.
Reimplemented from vtkObjectBase.
Reimplemented in vtkmAverageToCells, vtkmAverageToPoints, vtkmCleanGrid, vtkmClip, vtkmContour, vtkmCoordinateSystemTransform, vtkmExternalFaces, vtkmExtractVOI, vtkmGradient, vtkmHistogram, vtkmImageConnectivity, vtkmLevelOfDetail, vtkmNDHistogram, vtkmPointElevation, vtkmPointTransform, vtkmPolyDataNormals, vtkmProbe, vtkmThreshold, vtkmTriangleMeshPointNormals, vtkmWarpScalar, vtkmWarpVector, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkEnsembleSource, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkHyperTreeGridAlgorithm, vtkImageAlgorithm, vtkImageInPlaceFilter, vtkImageToStructuredGrid, vtkImageToStructuredPoints, vtkMoleculeAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkMultiTimeStepAlgorithm, vtkNonOverlappingAMRAlgorithm, vtkOverlappingAMRAlgorithm, vtkParallelReader, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkPassInputTypeAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPiecewiseFunctionShiftScale, vtkPointSetAlgorithm, vtkPolyDataAlgorithm, vtkReaderAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkSimpleImageToImageFilter, vtkSimpleReader, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkThreadedImageAlgorithm, vtkTreeAlgorithm, vtkTrivialConsumer, vtkTrivialProducer, vtkUndirectedGraphAlgorithm, vtkUniformGridAMRAlgorithm, vtkUniformGridPartitioner, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkMoleculeMapper, vtkMoleculeToAtomBallFilter, vtkMoleculeToBondStickFilter, vtkMoleculeToLinesFilter, vtkMoleculeToPolyDataFilter, vtkOpenQubeMoleculeSource, vtkPointSetToMoleculeFilter, vtkProteinRibbonFilter, vtkSimpleBondPerceiver, vtkOpenGLMoleculeMapper, vtkOpenSlideReader, vtkPSimpleBondPerceiver, vtkAMRCutPlane, vtkAMRGaussianPulseSource, vtkAMRResampleFilter, vtkAMRSliceFilter, vtkAMRToMultiBlockFilter, vtkImageToAMR, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataTangents, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkStaticCleanPolyData, vtkStreamerBase, vtkStripper, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCells, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractEdges, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedBlock, vtkExtractSelectedIds, vtkExtractSelectedLocations, vtkExtractSelectedPolyDataIds, vtkExtractSelectedRows, vtkExtractSelectedThresholds, vtkExtractSelection, vtkExtractTemporalFieldData, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticlePathFilter, vtkParticleTracer, vtkParticleTracerBase, vtkStreaklineFilter, vtkStreamSurface, vtkStreamTracer, vtkTemporalStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkClipClosedSurface, vtkClipConvexPolyData, vtkClipDataSet, vtkClipVolume, vtkContourTriangulator, vtkCountFaces, vtkCountVertices, vtkCursor2D, vtkCursor3D, vtkCurvatures, vtkDataSetGradient, vtkDataSetGradientPrecompute, vtkDataSetTriangleFilter, vtkDateToNumeric, vtkDeflectNormals, vtkDeformPointSet, vtkDensifyPolyData, vtkDicer, vtkDiscreteFlyingEdges2D, vtkDiscreteFlyingEdges3D, vtkDiscreteFlyingEdgesClipper2D, vtkDiscreteMarchingCubes, vtkDistancePolyDataFilter, vtkEdgePoints, vtkEqualizerFilter, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, vtkMultiBlockFromTimeSeriesFilter, vtkMultiBlockMergeFilter, vtkMultiThreshold, vtkNonOverlappingAMRLevelIdScalars, vtkNormalizeMatrixVectors, vtkOBBDicer, vtkOverlappingAMRLevelIdScalars, vtkPassArrays, vtkPassSelectedArrays, vtkPointConnectivityFilter, vtkPolyDataStreamer, vtkPolyDataToReebGraphFilter, vtkProbePolyhedron, vtkQuadraturePointInterpolator, vtkQuadraturePointsGenerator, vtkQuadratureSchemeDictionaryGenerator, vtkQuantizePolyDataPoints, vtkRandomAttributeGenerator, vtkRectilinearGridClip, vtkRectilinearGridToPointSet, vtkRectilinearGridToTetrahedra, vtkRecursiveDividingCubes, vtkReflectionFilter, vtkRemovePolyData, vtkRotationFilter, vtkSampleImplicitFunctionFilter, vtkShrinkFilter, vtkShrinkPolyData, vtkSpatialRepresentationFilter, vtkSphericalHarmonics, vtkSplineFilter, vtkSplitByCellScalarFilter, vtkSplitColumnComponents, vtkSplitField, vtkStructuredGridClip, vtkSubdivisionFilter, vtkSubPixelPositionEdgels, vtkSynchronizeTimeFilter, vtkTableBasedClipDataSet, vtkTableFFT, vtkTableToPolyData, vtkTableToStructuredGrid, vtkTemporalPathLineFilter, vtkTemporalStatistics, vtkTessellatorFilter, vtkTimeSourceExample, vtkTransformFilter, vtkTransformPolyDataFilter, vtkUncertaintyTubeFilter, vtkVertexGlyphFilter, vtkVolumeContourSpectrumFilter, vtkVoxelContoursToSurfaceFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkYoungsMaterialInterface, vtkGenericClip, vtkGenericContourFilter, vtkGenericCutter, vtkGenericDataSetTessellator, vtkGenericGeometryFilter, vtkGenericGlyph3DFilter, vtkGenericOutlineFilter, vtkGenericProbeFilter, vtkGenericStreamTracer, vtkCompositeDataGeometryFilter, vtkDataSetGhostGenerator, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridGhostDataGenerator, vtkStructuredGridPartitioner, vtkStructuredPointsGeometryFilter, vtkUniformGridGhostDataGenerator, vtkUnstructuredGridGeometryFilter, vtkAdaptiveDataSetSurfaceFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridGeometry, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, vtkAdaptiveSubdivisionFilter, vtkBandedPolyDataContourFilter, vtkButterflySubdivisionFilter, vtkCollisionDetectionFilter, vtkContourLoopExtraction, vtkCookieCutter, vtkDijkstraGraphGeodesicPath, vtkDijkstraImageGeodesicPath, vtkFillHolesFilter, vtkFitToHeightMapFilter, vtkGeodesicPath, vtkGraphGeodesicPath, vtkHausdorffDistancePointSetFilter, vtkHyperTreeGridOutlineFilter, vtkImageDataOutlineFilter, vtkImprintFilter, vtkLinearCellExtrusionFilter, vtkLinearExtrusionFilter, vtkLinearSubdivisionFilter, vtkLoopSubdivisionFilter, vtkOutlineFilter, vtkPolyDataPointSampler, vtkProjectedTexture, vtkQuadRotationalExtrusionFilter, vtkRibbonFilter, vtkRotationalExtrusionFilter, vtkRuledSurfaceFilter, vtkSectorSource, vtkSelectEnclosedPoints, vtkSelectPolyData, vtkSpherePuzzle, vtkSpherePuzzleArrows, vtkSubdivideTetra, vtkTrimmedExtrusionFilter, vtkVolumeOfRevolutionFilter, vtkOTDensityMap, vtkOTFilter, vtkOTKernelSmoothing, vtkAdaptiveTemporalInterpolator, vtkAggregateDataSetFilter, vtkAngularPeriodicFilter, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkPartitionBalancer, vtkPassThroughFilter, vtkPCellDataToPointData, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkProcessIdScalars, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkUnstructuredGridGhostCellsGenerator, vtkAdaptiveResampleToImage, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, TestVectorFieldSource, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPTemporalStreamTracer, vtkPConnectivityFilter, vtkPDataSetGhostGenerator, vtkPDistributedDataFilter, vtkPStructuredGridGhostDataGenerator, vtkPUniformGridGhostDataGenerator, vtkPUnstructuredGridGhostCellsGenerator, vtkExtractPiece, vtkMemoryLimitImageDataStreamer, vtkPComputeHistogram2DOutliers, vtkPExtractHistogram2D, vtkPPairwiseExtractHistogram2D, vtkTransmitImageDataPiece, vtkDistributedPointCloudFilter, vtkPExtractGrid, vtkPExtractRectilinearGrid, vtkPExtractVOI, vtkPAutoCorrelativeStatistics, vtkPBivariateLinearTableThreshold, vtkPContingencyStatistics, vtkPCorrelativeStatistics, vtkPDescriptiveStatistics, vtkPKMeansStatistics, vtkPMultiCorrelativeStatistics, vtkPOrderStatistics, vtkPPCAStatistics, vtkPCellSizeFilter, vtkBoundedPointSource, vtkConnectedPointsFilter, vtkConvertToPointCloud, vtkDensifyPointCloudFilter, vtkEuclideanClusterExtraction, vtkExtractEnclosedPoints, vtkExtractHierarchicalBins, vtkExtractPointCloudPiece, vtkExtractPoints, vtkExtractSurface, vtkFitImplicitFunction, vtkHierarchicalBinningFilter, vtkMaskPointsFilter, vtkPCACurvatureEstimation, vtkPCANormalEstimation, vtkPointCloudFilter, vtkPointDensityFilter, vtkPointInterpolator, vtkPointInterpolator2D, vtkPointOccupancyFilter, vtkPointSmoothingFilter, vtkPoissonDiskSampler, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCapsuleSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToYIQ, vtkImageYIQToRGB, vtkExtractVOI, vtkImageAppendComponents, vtkImageBlend, vtkImageBSplineCoefficients, vtkImageCacheFilter, vtkImageCast, vtkImageChangeInformation, vtkImageClip, vtkImageConstantPad, vtkImageDataStreamer, vtkImageDecomposeFilter, vtkImageDifference, vtkImageExtractComponents, vtkImageFlip, vtkImageIterateFilter, vtkImageMagnify, vtkImageMapToColors, vtkImageMask, vtkImageMirrorPad, vtkImagePadFilter, vtkImagePermute, vtkImageProbeFilter, vtkImageResample, vtkImageResize, vtkImageReslice, vtkImageResliceToColors, vtkImageShiftScale, vtkImageShrink3D, vtkImageStencilAlgorithm, vtkImageStencilSource, vtkImageThreshold, vtkImageTranslateExtent, vtkImageWrapPad, vtkRTAnalyticSource, vtkImageButterworthHighPass, vtkImageButterworthLowPass, vtkImageFFT, vtkImageFourierCenter, vtkImageFourierFilter, vtkImageIdealHighPass, vtkImageIdealLowPass, vtkImageRFFT, vtkImageAnisotropicDiffusion2D, vtkImageAnisotropicDiffusion3D, vtkImageCheckerboard, vtkImageCityBlockDistance, vtkImageConvolve, vtkImageCorrelation, vtkImageEuclideanDistance, vtkImageEuclideanToPolar, vtkImageGaussianSmooth, vtkImageGradient, vtkImageGradientMagnitude, vtkImageHybridMedian2D, vtkImageLaplacian, vtkImageMedian3D, vtkImageNormalize, vtkImageRange3D, vtkImageSeparableConvolution, vtkImageSlab, vtkImageSlabReslice, vtkImageSobel2D, vtkImageSobel3D, vtkImageSpatialAlgorithm, vtkImageVariance3D, vtkSimpleImageFilterExample, vtkBooleanTexture, vtkCheckerboardSplatter, vtkFastSplatter, vtkGaussianSplatter, vtkImageCursor3D, vtkImageRectilinearWipe, vtkImageToPoints, vtkPointLoad, vtkSampleFunction, vtkShepardMethod, vtkSurfaceReconstructionFilter, vtkTriangularTexture, vtkVoxelModeller, vtkImageDivergence, vtkImageDotProduct, vtkImageLogarithmicScale, vtkImageLogic, vtkImageMagnitude, vtkImageMaskBits, vtkImageMathematics, vtkImageWeightedSum, vtkImageConnectivityFilter, vtkImageContinuousDilate3D, vtkImageContinuousErode3D, vtkImageDilateErode3D, vtkImageIslandRemoval2D, vtkImageNonMaximumSuppression, vtkImageOpenClose3D, vtkImageSeedConnectivity, vtkImageSkeleton2D, vtkImageThresholdConnectivity, vtkOpenGLImageGradient, vtkImageCanvasSource2D, vtkImageEllipsoidSource, vtkImageGaussianSource, vtkImageGridSource, vtkImageMandelbrotSource, vtkImageNoiseSource, vtkImageSinusoidSource, vtkImageAccumulate, vtkImageHistogram, vtkImageHistogramStatistics, vtkImageStencil, vtkImageStencilToImage, vtkImageToImageStencil, vtkImplicitFunctionToImageStencil, vtkLassoStencilSource, vtkPolyDataToImageStencil, vtkROIStencilSource, vtkBoostBetweennessClustering, vtkBoostBiconnectedComponents, vtkBoostBrandesCentrality, vtkBoostBreadthFirstSearch, vtkBoostBreadthFirstSearchTree, vtkBoostConnectedComponents, vtkBoostDividedEdgeBundling, vtkBoostExtractLargestComponent, vtkBoostKruskalMinimumSpanningTree, vtkBoostLogWeighting, vtkBoostPrimMinimumSpanningTree, vtkBoostRandomSparseArraySource, vtkBoostSplitTableField, vtkAddMembershipArray, vtkAdjacencyMatrixToEdgeTable, vtkArrayNorm, vtkArrayToTable, vtkCollapseGraph, vtkCollapseVerticesByArray, vtkContinuousScatterplot, vtkDataObjectToTable, vtkDotProductSimilarity, vtkEdgeCenters, vtkExpandSelectedGraph, vtkExtractSelectedGraph, vtkExtractSelectedTree, vtkGenerateIndexArray, vtkGraphHierarchicalBundleEdges, vtkGroupLeafVertices, vtkKCoreDecomposition, vtkMergeColumns, vtkMergeGraphs, vtkMergeTables, vtkNetworkHierarchy, vtkPipelineGraphSource, vtkPruneTreeFilter, vtkRandomGraphSource, vtkReduceTable, vtkRemoveHiddenData, vtkRemoveIsolatedVertices, vtkSparseArrayToTable, vtkStreamGraph, vtkStringToCategory, vtkStringToNumeric, vtkTableToArray, vtkTableToGraph, vtkTableToSparseArray, vtkTableToTreeFilter, vtkThresholdGraph, vtkThresholdTable, vtkTransferAttributes, vtkTransposeMatrix, vtkTreeDifferenceFilter, vtkTreeFieldAggregator, vtkTreeLevelsFilter, vtkVertexDegree, vtkWordCloud, vtkAreaLayout, vtkAssignCoordinates, vtkCirclePackLayout, vtkCirclePackToPolyData, vtkEdgeLayout, vtkGraphLayout, vtkKCoreLayout, vtkPerturbCoincidentVertices, vtkSplineGraphEdges, vtkTreeMapLayout, vtkTreeMapToPolyData, vtkTreeRingToPolyData, vtkCameraHandleSource, vtkResliceCursorPolyDataAlgorithm, vtkADIOS2CoreImageReader, vtkADIOS2VTXReader, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkAMREnzoParticlesReader, vtkAMREnzoReader, vtkAMReXGridReader, vtkAMReXParticlesReader, vtkAMRFlashParticlesReader, vtkAMRFlashReader, vtkAMRVelodyneReader, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkAbstractParticleWriter, vtkAbstractPolyDataReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkGenericEnSightReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkGDALRasterReader, vtkGDALVectorReader, vtkGeoJSONReader, vtkGeoJSONWriter, vtkAVSucdReader, vtkBYUReader, vtkBYUWriter, vtkCGMWriter, vtkChacoReader, vtkFacetWriter, vtkFLUENTReader, vtkGAMBITReader, vtkGLTFReader, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesReader, vtkMCubesWriter, vtkMFIXReader, vtkOBJReader, vtkOBJWriter, vtkOpenFOAMReader, vtkParticleReader, vtkProStarReader, vtkPTSReader, vtkSTLReader, vtkSTLWriter, vtkTecplotReader, vtkWindBladeReader, vtkH5PartReader, vtkH5RageReader, vtkHDFReader, vtkBMPReader, vtkBMPWriter, vtkDEMReader, vtkDICOMImageReader, vtkGESignaReader, vtkHDRReader, vtkImageExport, vtkImageImport, vtkImageReader, vtkImageReader2, vtkImageWriter, vtkJPEGReader, vtkJPEGWriter, vtkJSONImageWriter, vtkMedicalImageReader2, vtkMetaImageReader, vtkMetaImageWriter, vtkMRCReader, vtkNIFTIImageReader, vtkNIFTIImageWriter, vtkNrrdReader, vtkOMETIFFReader, vtkPNGReader, vtkPNGWriter, vtkPNMReader, vtkPNMWriter, vtkPostScriptWriter, vtkSEPReader, vtkSLCReader, vtkTGAReader, vtkTIFFReader, vtkTIFFWriter, vtkVolume16Reader, vtkVolumeReader, vtkOBJPolyDataProcessor, vtkBiomTableReader, vtkChacoGraphReader, vtkDelimitedTextReader, vtkDIMACSGraphReader, vtkDIMACSGraphWriter, vtkFixedWidthTextReader, vtkISIReader, vtkMultiNewickTreeReader, vtkNewickTreeReader, vtkNewickTreeWriter, vtkPhyloXMLTreeReader, vtkPhyloXMLTreeWriter, vtkRISReader, vtkTemporalDelimitedTextReader, vtkTulipReader, vtkXGMLReader, vtkXMLTreeReader, vtkIOSSReader, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkPolyDataReader, vtkPolyDataWriter, vtkRectilinearGridReader, vtkRectilinearGridWriter, vtkSimplePointsReader, vtkSimplePointsWriter, vtkStructuredGridReader, vtkStructuredGridWriter, vtkStructuredPointsReader, vtkStructuredPointsWriter, vtkTableReader, vtkTableWriter, vtkTreeReader, vtkTreeWriter, vtkUnstructuredGridReader, vtkUnstructuredGridWriter, vtkLSDynaReader, vtkMINCImageReader, vtkMINCImageWriter, vtkMNIObjectReader, vtkMNIObjectWriter, vtkMNITagPointReader, vtkMNITagPointWriter, vtkMNITransformReader, vtkMNITransformWriter, vtkMotionFXCFGReader, vtkAVIWriter, vtkGenericMovieWriter, vtkMP4Writer, vtkMPIImageReader, vtkPNrrdReader, vtkMPIMultiBlockPLOT3DReader, vtkPWindBladeReader, vtkMySQLToTableReader, vtkTableToMySQLWriter, vtkMPASReader, vtkNetCDFCAMReader, vtkNetCDFCFReader, vtkNetCDFPOPReader, vtkNetCDFReader, vtkSLACParticleReader, vtkSLACReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, vtkXMLPPartitionedDataSetWriter, vtkXMLPPolyDataWriter, vtkXMLPRectilinearGridWriter, vtkXMLPStructuredDataWriter, vtkXMLPStructuredGridWriter, vtkXMLPTableWriter, vtkXMLPUniformGridAMRWriter, vtkXMLPUnstructuredDataWriter, vtkXMLPUnstructuredGridWriter, vtkXMLWriter2, vtkPDALReader, vtkPIOReader, vtkPLYReader, vtkPLYWriter, vtkPostgreSQLToTableReader, vtkTableToPostgreSQLWriter, vtkSegYReader, vtkDatabaseToTableReader, vtkRowQueryToTable, vtkSQLDatabaseGraphSource, vtkSQLDatabaseTableSource, vtkSQLGraphReader, vtkSQLiteToTableReader, vtkTableToDatabaseWriter, vtkTableToSQLiteWriter, vtkTecplotTableReader, vtkTRUCHASReader, vtkVeraOutReader, vtkVideoSource, vtkWin32VideoSource, vtkVPICReader, vtkXdmfReader, vtkXdmfWriter, vtkXdmf3Reader, vtkXdmf3Writer, vtkRTXMLPolyDataReader, vtkXMLCompositeDataReader, vtkXMLCompositeDataWriter, vtkXMLDataObjectWriter, vtkXMLDataReader, vtkXMLDataSetWriter, vtkXMLGenericDataObjectReader, vtkXMLHierarchicalBoxDataReader, vtkXMLHierarchicalBoxDataWriter, vtkXMLHierarchicalDataReader, vtkXMLHyperTreeGridReader, vtkXMLHyperTreeGridWriter, vtkXMLImageDataReader, vtkXMLImageDataWriter, vtkXMLMultiBlockDataReader, vtkXMLMultiBlockDataWriter, vtkXMLMultiGroupDataReader, vtkXMLPartitionedDataSetCollectionReader, vtkXMLPartitionedDataSetReader, vtkXMLPDataObjectReader, vtkXMLPDataReader, vtkXMLPHyperTreeGridReader, vtkXMLPImageDataReader, vtkXMLPolyDataReader, vtkXMLPolyDataWriter, vtkXMLPPolyDataReader, vtkXMLPRectilinearGridReader, vtkXMLPStructuredDataReader, vtkXMLPStructuredGridReader, vtkXMLPTableReader, vtkXMLPUnstructuredDataReader, vtkXMLPUnstructuredGridReader, vtkXMLReader, vtkXMLRectilinearGridReader, vtkXMLRectilinearGridWriter, vtkXMLStructuredDataReader, vtkXMLStructuredDataWriter, vtkXMLStructuredGridReader, vtkXMLStructuredGridWriter, vtkXMLTableReader, vtkXMLTableWriter, vtkXMLUniformGridAMRReader, vtkXMLUniformGridAMRWriter, vtkXMLUnstructuredDataReader, vtkXMLUnstructuredDataWriter, vtkXMLUnstructuredGridReader, vtkXMLUnstructuredGridWriter, vtkXMLWriter, vtkXMLWriterBase, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkContextMapper2D, vtkAbstractHyperTreeGridMapper, vtkAbstractMapper, vtkAbstractMapper3D, vtkAbstractVolumeMapper, vtkCompositePolyDataMapper, vtkDataSetMapper, vtkDistanceToCamera, vtkGlyph3DMapper, vtkGraphMapper, vtkGraphToGlyphs, vtkHierarchicalPolyDataMapper, vtkImageMapper, vtkImageMapper3D, vtkImageSliceMapper, vtkLabeledContourMapper, vtkMapArrayValues, vtkMapper, vtkMapper2D, vtkPointGaussianMapper, vtkPolyDataMapper, vtkPolyDataMapper2D, vtkRendererSource, vtkResizingWindowToImageFilter, vtkSelectVisiblePoints, vtkTextMapper, vtkTexture, vtkTransformCoordinateSystems, vtkWindowToImageFilter, vtkVectorText, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkCompositeMapperHelper2, vtkCompositePolyDataMapper2, vtkEquirectangularToCubeMapTexture, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkSmartVolumeMapper, vtkConvertSelectionDomain, vtkDataRepresentation, vtkEmptyRepresentation, vtkApplyColors, vtkApplyIcons, vtkParallelCoordinatesHistogramRepresentation, vtkParallelCoordinatesRepresentation, vtkRenderedGraphRepresentation, vtkRenderedHierarchyRepresentation, vtkRenderedRepresentation, vtkRenderedSurfaceRepresentation, vtkRenderedTreeAreaRepresentation, and vtkQtTableRepresentation.
|
static |
|
protectedvirtual |
Reimplemented in vtkmAverageToCells, vtkmAverageToPoints, vtkmCleanGrid, vtkmClip, vtkmContour, vtkmCoordinateSystemTransform, vtkmExternalFaces, vtkmExtractVOI, vtkmGradient, vtkmHistogram, vtkmImageConnectivity, vtkmLevelOfDetail, vtkmNDHistogram, vtkmPointElevation, vtkmPointTransform, vtkmPolyDataNormals, vtkmProbe, vtkmThreshold, vtkmTriangleMeshPointNormals, vtkmWarpScalar, vtkmWarpVector, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkEnsembleSource, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkHyperTreeGridAlgorithm, vtkImageAlgorithm, vtkImageInPlaceFilter, vtkImageToStructuredGrid, vtkImageToStructuredPoints, vtkMoleculeAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkMultiTimeStepAlgorithm, vtkNonOverlappingAMRAlgorithm, vtkOverlappingAMRAlgorithm, vtkParallelReader, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkPassInputTypeAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPiecewiseFunctionShiftScale, vtkPointSetAlgorithm, vtkPolyDataAlgorithm, vtkReaderAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkSimpleImageToImageFilter, vtkSimpleReader, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkThreadedImageAlgorithm, vtkTreeAlgorithm, vtkTrivialConsumer, vtkTrivialProducer, vtkUndirectedGraphAlgorithm, vtkUniformGridAMRAlgorithm, vtkUniformGridPartitioner, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkMoleculeMapper, vtkMoleculeToAtomBallFilter, vtkMoleculeToBondStickFilter, vtkMoleculeToLinesFilter, vtkMoleculeToPolyDataFilter, vtkOpenQubeMoleculeSource, vtkPointSetToMoleculeFilter, vtkProteinRibbonFilter, vtkSimpleBondPerceiver, vtkOpenGLMoleculeMapper, vtkOpenSlideReader, vtkPSimpleBondPerceiver, vtkAMRCutPlane, vtkAMRGaussianPulseSource, vtkAMRResampleFilter, vtkAMRSliceFilter, vtkAMRToMultiBlockFilter, vtkImageToAMR, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataTangents, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkStaticCleanPolyData, vtkStreamerBase, vtkStripper, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCells, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractEdges, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedBlock, vtkExtractSelectedIds, vtkExtractSelectedLocations, vtkExtractSelectedPolyDataIds, vtkExtractSelectedRows, vtkExtractSelectedThresholds, vtkExtractSelection, vtkExtractTemporalFieldData, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticlePathFilter, vtkParticleTracer, vtkParticleTracerBase, vtkStreaklineFilter, vtkStreamSurface, vtkStreamTracer, vtkTemporalStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkClipClosedSurface, vtkClipConvexPolyData, vtkClipDataSet, vtkClipVolume, vtkContourTriangulator, vtkCountFaces, vtkCountVertices, vtkCursor2D, vtkCursor3D, vtkCurvatures, vtkDataSetGradient, vtkDataSetGradientPrecompute, vtkDataSetTriangleFilter, vtkDateToNumeric, vtkDeflectNormals, vtkDeformPointSet, vtkDensifyPolyData, vtkDicer, vtkDiscreteFlyingEdges2D, vtkDiscreteFlyingEdges3D, vtkDiscreteFlyingEdgesClipper2D, vtkDiscreteMarchingCubes, vtkDistancePolyDataFilter, vtkEdgePoints, vtkEqualizerFilter, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, vtkMultiBlockFromTimeSeriesFilter, vtkMultiBlockMergeFilter, vtkMultiThreshold, vtkNonOverlappingAMRLevelIdScalars, vtkNormalizeMatrixVectors, vtkOBBDicer, vtkOverlappingAMRLevelIdScalars, vtkPassArrays, vtkPassSelectedArrays, vtkPointConnectivityFilter, vtkPolyDataStreamer, vtkPolyDataToReebGraphFilter, vtkProbePolyhedron, vtkQuadraturePointInterpolator, vtkQuadraturePointsGenerator, vtkQuadratureSchemeDictionaryGenerator, vtkQuantizePolyDataPoints, vtkRandomAttributeGenerator, vtkRectilinearGridClip, vtkRectilinearGridToPointSet, vtkRectilinearGridToTetrahedra, vtkRecursiveDividingCubes, vtkReflectionFilter, vtkRemovePolyData, vtkRotationFilter, vtkSampleImplicitFunctionFilter, vtkShrinkFilter, vtkShrinkPolyData, vtkSpatialRepresentationFilter, vtkSphericalHarmonics, vtkSplineFilter, vtkSplitByCellScalarFilter, vtkSplitColumnComponents, vtkSplitField, vtkStructuredGridClip, vtkSubdivisionFilter, vtkSubPixelPositionEdgels, vtkSynchronizeTimeFilter, vtkTableBasedClipDataSet, vtkTableFFT, vtkTableToPolyData, vtkTableToStructuredGrid, vtkTemporalPathLineFilter, vtkTemporalStatistics, vtkTessellatorFilter, vtkTimeSourceExample, vtkTransformFilter, vtkTransformPolyDataFilter, vtkUncertaintyTubeFilter, vtkVertexGlyphFilter, vtkVolumeContourSpectrumFilter, vtkVoxelContoursToSurfaceFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkYoungsMaterialInterface, vtkGenericClip, vtkGenericContourFilter, vtkGenericCutter, vtkGenericDataSetTessellator, vtkGenericGeometryFilter, vtkGenericGlyph3DFilter, vtkGenericOutlineFilter, vtkGenericProbeFilter, vtkGenericStreamTracer, vtkCompositeDataGeometryFilter, vtkDataSetGhostGenerator, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridGhostDataGenerator, vtkStructuredGridPartitioner, vtkStructuredPointsGeometryFilter, vtkUniformGridGhostDataGenerator, vtkUnstructuredGridGeometryFilter, vtkAdaptiveDataSetSurfaceFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridGeometry, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, vtkAdaptiveSubdivisionFilter, vtkBandedPolyDataContourFilter, vtkButterflySubdivisionFilter, vtkCollisionDetectionFilter, vtkContourLoopExtraction, vtkCookieCutter, vtkDijkstraGraphGeodesicPath, vtkDijkstraImageGeodesicPath, vtkFillHolesFilter, vtkFitToHeightMapFilter, vtkGeodesicPath, vtkGraphGeodesicPath, vtkHausdorffDistancePointSetFilter, vtkHyperTreeGridOutlineFilter, vtkImageDataOutlineFilter, vtkImprintFilter, vtkLinearCellExtrusionFilter, vtkLinearExtrusionFilter, vtkLinearSubdivisionFilter, vtkLoopSubdivisionFilter, vtkOutlineFilter, vtkPolyDataPointSampler, vtkProjectedTexture, vtkQuadRotationalExtrusionFilter, vtkRibbonFilter, vtkRotationalExtrusionFilter, vtkRuledSurfaceFilter, vtkSectorSource, vtkSelectEnclosedPoints, vtkSelectPolyData, vtkSpherePuzzle, vtkSpherePuzzleArrows, vtkSubdivideTetra, vtkTrimmedExtrusionFilter, vtkVolumeOfRevolutionFilter, vtkOTDensityMap, vtkOTFilter, vtkOTKernelSmoothing, vtkAdaptiveTemporalInterpolator, vtkAggregateDataSetFilter, vtkAngularPeriodicFilter, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkPartitionBalancer, vtkPassThroughFilter, vtkPCellDataToPointData, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkProcessIdScalars, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkUnstructuredGridGhostCellsGenerator, vtkAdaptiveResampleToImage, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, TestVectorFieldSource, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPTemporalStreamTracer, vtkPConnectivityFilter, vtkPDataSetGhostGenerator, vtkPDistributedDataFilter, vtkPStructuredGridGhostDataGenerator, vtkPUniformGridGhostDataGenerator, vtkPUnstructuredGridGhostCellsGenerator, vtkExtractPiece, vtkMemoryLimitImageDataStreamer, vtkPComputeHistogram2DOutliers, vtkPExtractHistogram2D, vtkPPairwiseExtractHistogram2D, vtkTransmitImageDataPiece, vtkDistributedPointCloudFilter, vtkPExtractGrid, vtkPExtractRectilinearGrid, vtkPExtractVOI, vtkPAutoCorrelativeStatistics, vtkPBivariateLinearTableThreshold, vtkPContingencyStatistics, vtkPCorrelativeStatistics, vtkPDescriptiveStatistics, vtkPKMeansStatistics, vtkPMultiCorrelativeStatistics, vtkPOrderStatistics, vtkPPCAStatistics, vtkPCellSizeFilter, vtkBoundedPointSource, vtkConnectedPointsFilter, vtkConvertToPointCloud, vtkDensifyPointCloudFilter, vtkEuclideanClusterExtraction, vtkExtractEnclosedPoints, vtkExtractHierarchicalBins, vtkExtractPointCloudPiece, vtkExtractPoints, vtkExtractSurface, vtkFitImplicitFunction, vtkHierarchicalBinningFilter, vtkMaskPointsFilter, vtkPCACurvatureEstimation, vtkPCANormalEstimation, vtkPointCloudFilter, vtkPointDensityFilter, vtkPointInterpolator, vtkPointInterpolator2D, vtkPointOccupancyFilter, vtkPointSmoothingFilter, vtkPoissonDiskSampler, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCapsuleSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToYIQ, vtkImageYIQToRGB, vtkExtractVOI, vtkImageAppendComponents, vtkImageBlend, vtkImageBSplineCoefficients, vtkImageCacheFilter, vtkImageCast, vtkImageChangeInformation, vtkImageClip, vtkImageConstantPad, vtkImageDataStreamer, vtkImageDecomposeFilter, vtkImageDifference, vtkImageExtractComponents, vtkImageFlip, vtkImageIterateFilter, vtkImageMagnify, vtkImageMapToColors, vtkImageMask, vtkImageMirrorPad, vtkImagePadFilter, vtkImagePermute, vtkImageProbeFilter, vtkImageResample, vtkImageResize, vtkImageReslice, vtkImageResliceToColors, vtkImageShiftScale, vtkImageShrink3D, vtkImageStencilAlgorithm, vtkImageStencilSource, vtkImageThreshold, vtkImageTranslateExtent, vtkImageWrapPad, vtkRTAnalyticSource, vtkImageButterworthHighPass, vtkImageButterworthLowPass, vtkImageFFT, vtkImageFourierCenter, vtkImageFourierFilter, vtkImageIdealHighPass, vtkImageIdealLowPass, vtkImageRFFT, vtkImageAnisotropicDiffusion2D, vtkImageAnisotropicDiffusion3D, vtkImageCheckerboard, vtkImageCityBlockDistance, vtkImageConvolve, vtkImageCorrelation, vtkImageEuclideanDistance, vtkImageEuclideanToPolar, vtkImageGaussianSmooth, vtkImageGradient, vtkImageGradientMagnitude, vtkImageHybridMedian2D, vtkImageLaplacian, vtkImageMedian3D, vtkImageNormalize, vtkImageRange3D, vtkImageSeparableConvolution, vtkImageSlab, vtkImageSlabReslice, vtkImageSobel2D, vtkImageSobel3D, vtkImageSpatialAlgorithm, vtkImageVariance3D, vtkSimpleImageFilterExample, vtkBooleanTexture, vtkCheckerboardSplatter, vtkFastSplatter, vtkGaussianSplatter, vtkImageCursor3D, vtkImageRectilinearWipe, vtkImageToPoints, vtkPointLoad, vtkSampleFunction, vtkShepardMethod, vtkSurfaceReconstructionFilter, vtkTriangularTexture, vtkVoxelModeller, vtkImageDivergence, vtkImageDotProduct, vtkImageLogarithmicScale, vtkImageLogic, vtkImageMagnitude, vtkImageMaskBits, vtkImageMathematics, vtkImageWeightedSum, vtkImageConnectivityFilter, vtkImageContinuousDilate3D, vtkImageContinuousErode3D, vtkImageDilateErode3D, vtkImageIslandRemoval2D, vtkImageNonMaximumSuppression, vtkImageOpenClose3D, vtkImageSeedConnectivity, vtkImageSkeleton2D, vtkImageThresholdConnectivity, vtkOpenGLImageGradient, vtkImageCanvasSource2D, vtkImageEllipsoidSource, vtkImageGaussianSource, vtkImageGridSource, vtkImageMandelbrotSource, vtkImageNoiseSource, vtkImageSinusoidSource, vtkImageAccumulate, vtkImageHistogram, vtkImageHistogramStatistics, vtkImageStencil, vtkImageStencilToImage, vtkImageToImageStencil, vtkImplicitFunctionToImageStencil, vtkLassoStencilSource, vtkPolyDataToImageStencil, vtkROIStencilSource, vtkBoostBetweennessClustering, vtkBoostBiconnectedComponents, vtkBoostBrandesCentrality, vtkBoostBreadthFirstSearch, vtkBoostBreadthFirstSearchTree, vtkBoostConnectedComponents, vtkBoostDividedEdgeBundling, vtkBoostExtractLargestComponent, vtkBoostKruskalMinimumSpanningTree, vtkBoostLogWeighting, vtkBoostPrimMinimumSpanningTree, vtkBoostRandomSparseArraySource, vtkBoostSplitTableField, vtkAddMembershipArray, vtkAdjacencyMatrixToEdgeTable, vtkArrayNorm, vtkArrayToTable, vtkCollapseGraph, vtkCollapseVerticesByArray, vtkContinuousScatterplot, vtkDataObjectToTable, vtkDotProductSimilarity, vtkEdgeCenters, vtkExpandSelectedGraph, vtkExtractSelectedGraph, vtkExtractSelectedTree, vtkGenerateIndexArray, vtkGraphHierarchicalBundleEdges, vtkGroupLeafVertices, vtkKCoreDecomposition, vtkMergeColumns, vtkMergeGraphs, vtkMergeTables, vtkNetworkHierarchy, vtkPipelineGraphSource, vtkPruneTreeFilter, vtkRandomGraphSource, vtkReduceTable, vtkRemoveHiddenData, vtkRemoveIsolatedVertices, vtkSparseArrayToTable, vtkStreamGraph, vtkStringToCategory, vtkStringToNumeric, vtkTableToArray, vtkTableToGraph, vtkTableToSparseArray, vtkTableToTreeFilter, vtkThresholdGraph, vtkThresholdTable, vtkTransferAttributes, vtkTransposeMatrix, vtkTreeDifferenceFilter, vtkTreeFieldAggregator, vtkTreeLevelsFilter, vtkVertexDegree, vtkWordCloud, vtkAreaLayout, vtkAssignCoordinates, vtkCirclePackLayout, vtkCirclePackToPolyData, vtkEdgeLayout, vtkGraphLayout, vtkKCoreLayout, vtkPerturbCoincidentVertices, vtkSplineGraphEdges, vtkTreeMapLayout, vtkTreeMapToPolyData, vtkTreeRingToPolyData, vtkCameraHandleSource, vtkResliceCursorPolyDataAlgorithm, vtkADIOS2CoreImageReader, vtkADIOS2VTXReader, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkAMREnzoParticlesReader, vtkAMREnzoReader, vtkAMReXGridReader, vtkAMReXParticlesReader, vtkAMRFlashParticlesReader, vtkAMRFlashReader, vtkAMRVelodyneReader, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkAbstractParticleWriter, vtkAbstractPolyDataReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkGenericEnSightReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkGDALRasterReader, vtkGDALVectorReader, vtkGeoJSONReader, vtkGeoJSONWriter, vtkAVSucdReader, vtkBYUReader, vtkBYUWriter, vtkCGMWriter, vtkChacoReader, vtkFacetWriter, vtkFLUENTReader, vtkGAMBITReader, vtkGLTFReader, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesReader, vtkMCubesWriter, vtkMFIXReader, vtkOBJReader, vtkOBJWriter, vtkOpenFOAMReader, vtkParticleReader, vtkProStarReader, vtkPTSReader, vtkSTLReader, vtkSTLWriter, vtkTecplotReader, vtkWindBladeReader, vtkH5PartReader, vtkH5RageReader, vtkHDFReader, vtkBMPReader, vtkBMPWriter, vtkDEMReader, vtkDICOMImageReader, vtkGESignaReader, vtkHDRReader, vtkImageExport, vtkImageImport, vtkImageReader, vtkImageReader2, vtkImageWriter, vtkJPEGReader, vtkJPEGWriter, vtkJSONImageWriter, vtkMedicalImageReader2, vtkMetaImageReader, vtkMetaImageWriter, vtkMRCReader, vtkNIFTIImageReader, vtkNIFTIImageWriter, vtkNrrdReader, vtkOMETIFFReader, vtkPNGReader, vtkPNGWriter, vtkPNMReader, vtkPNMWriter, vtkPostScriptWriter, vtkSEPReader, vtkSLCReader, vtkTGAReader, vtkTIFFReader, vtkTIFFWriter, vtkVolume16Reader, vtkVolumeReader, vtkOBJPolyDataProcessor, vtkBiomTableReader, vtkChacoGraphReader, vtkDelimitedTextReader, vtkDIMACSGraphReader, vtkDIMACSGraphWriter, vtkFixedWidthTextReader, vtkISIReader, vtkMultiNewickTreeReader, vtkNewickTreeReader, vtkNewickTreeWriter, vtkPhyloXMLTreeReader, vtkPhyloXMLTreeWriter, vtkRISReader, vtkTemporalDelimitedTextReader, vtkTulipReader, vtkXGMLReader, vtkXMLTreeReader, vtkIOSSReader, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkPolyDataReader, vtkPolyDataWriter, vtkRectilinearGridReader, vtkRectilinearGridWriter, vtkSimplePointsReader, vtkSimplePointsWriter, vtkStructuredGridReader, vtkStructuredGridWriter, vtkStructuredPointsReader, vtkStructuredPointsWriter, vtkTableReader, vtkTableWriter, vtkTreeReader, vtkTreeWriter, vtkUnstructuredGridReader, vtkUnstructuredGridWriter, vtkLSDynaReader, vtkMINCImageReader, vtkMINCImageWriter, vtkMNIObjectReader, vtkMNIObjectWriter, vtkMNITagPointReader, vtkMNITagPointWriter, vtkMNITransformReader, vtkMNITransformWriter, vtkMotionFXCFGReader, vtkAVIWriter, vtkGenericMovieWriter, vtkMP4Writer, vtkMPIImageReader, vtkPNrrdReader, vtkMPIMultiBlockPLOT3DReader, vtkPWindBladeReader, vtkMySQLToTableReader, vtkTableToMySQLWriter, vtkMPASReader, vtkNetCDFCAMReader, vtkNetCDFCFReader, vtkNetCDFPOPReader, vtkNetCDFReader, vtkSLACParticleReader, vtkSLACReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, vtkXMLPPartitionedDataSetWriter, vtkXMLPPolyDataWriter, vtkXMLPRectilinearGridWriter, vtkXMLPStructuredDataWriter, vtkXMLPStructuredGridWriter, vtkXMLPTableWriter, vtkXMLPUniformGridAMRWriter, vtkXMLPUnstructuredDataWriter, vtkXMLPUnstructuredGridWriter, vtkXMLWriter2, vtkPDALReader, vtkPIOReader, vtkPLYReader, vtkPLYWriter, vtkPostgreSQLToTableReader, vtkTableToPostgreSQLWriter, vtkSegYReader, vtkDatabaseToTableReader, vtkRowQueryToTable, vtkSQLDatabaseGraphSource, vtkSQLDatabaseTableSource, vtkSQLGraphReader, vtkSQLiteToTableReader, vtkTableToDatabaseWriter, vtkTableToSQLiteWriter, vtkTecplotTableReader, vtkTRUCHASReader, vtkVeraOutReader, vtkVideoSource, vtkWin32VideoSource, vtkVPICReader, vtkXdmfReader, vtkXdmfWriter, vtkXdmf3Reader, vtkXdmf3Writer, vtkRTXMLPolyDataReader, vtkXMLCompositeDataReader, vtkXMLCompositeDataWriter, vtkXMLDataObjectWriter, vtkXMLDataReader, vtkXMLDataSetWriter, vtkXMLGenericDataObjectReader, vtkXMLHierarchicalBoxDataReader, vtkXMLHierarchicalBoxDataWriter, vtkXMLHierarchicalDataReader, vtkXMLHyperTreeGridReader, vtkXMLHyperTreeGridWriter, vtkXMLImageDataReader, vtkXMLImageDataWriter, vtkXMLMultiBlockDataReader, vtkXMLMultiBlockDataWriter, vtkXMLMultiGroupDataReader, vtkXMLPartitionedDataSetCollectionReader, vtkXMLPartitionedDataSetReader, vtkXMLPDataObjectReader, vtkXMLPDataReader, vtkXMLPHyperTreeGridReader, vtkXMLPImageDataReader, vtkXMLPolyDataReader, vtkXMLPolyDataWriter, vtkXMLPPolyDataReader, vtkXMLPRectilinearGridReader, vtkXMLPStructuredDataReader, vtkXMLPStructuredGridReader, vtkXMLPTableReader, vtkXMLPUnstructuredDataReader, vtkXMLPUnstructuredGridReader, vtkXMLReader, vtkXMLRectilinearGridReader, vtkXMLRectilinearGridWriter, vtkXMLStructuredDataReader, vtkXMLStructuredDataWriter, vtkXMLStructuredGridReader, vtkXMLStructuredGridWriter, vtkXMLTableReader, vtkXMLTableWriter, vtkXMLUniformGridAMRReader, vtkXMLUniformGridAMRWriter, vtkXMLUnstructuredDataReader, vtkXMLUnstructuredDataWriter, vtkXMLUnstructuredGridReader, vtkXMLUnstructuredGridWriter, vtkXMLWriter, vtkXMLWriterBase, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkContextMapper2D, vtkAbstractHyperTreeGridMapper, vtkAbstractMapper, vtkAbstractMapper3D, vtkAbstractVolumeMapper, vtkCompositePolyDataMapper, vtkDataSetMapper, vtkDistanceToCamera, vtkGlyph3DMapper, vtkGraphMapper, vtkGraphToGlyphs, vtkHierarchicalPolyDataMapper, vtkImageMapper, vtkImageMapper3D, vtkImageSliceMapper, vtkLabeledContourMapper, vtkMapArrayValues, vtkMapper, vtkMapper2D, vtkPointGaussianMapper, vtkPolyDataMapper, vtkPolyDataMapper2D, vtkRendererSource, vtkResizingWindowToImageFilter, vtkSelectVisiblePoints, vtkTextMapper, vtkTexture, vtkTransformCoordinateSystems, vtkWindowToImageFilter, vtkVectorText, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkCompositeMapperHelper2, vtkCompositePolyDataMapper2, vtkEquirectangularToCubeMapTexture, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkSmartVolumeMapper, vtkConvertSelectionDomain, vtkDataRepresentation, vtkEmptyRepresentation, vtkApplyColors, vtkApplyIcons, vtkParallelCoordinatesHistogramRepresentation, vtkParallelCoordinatesRepresentation, vtkRenderedGraphRepresentation, vtkRenderedHierarchyRepresentation, vtkRenderedRepresentation, vtkRenderedSurfaceRepresentation, vtkRenderedTreeAreaRepresentation, and vtkQtTableRepresentation.
vtkAlgorithm * vtkAlgorithm::NewInstance | ( | ) | const |
|
overridevirtual |
Methods invoked by print to print information about the object including superclasses.
Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkObject.
Reimplemented in vtkOpenQubeMoleculeSource, vtkNonOverlappingAMRLevelIdScalars, vtkCGMWriter, vtkSQLDatabaseGraphSource, vtkSQLGraphReader, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkEnsembleSource, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkHyperTreeGridAlgorithm, vtkImageAlgorithm, vtkImageInPlaceFilter, vtkImageToStructuredPoints, vtkMoleculeAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkMultiTimeStepAlgorithm, vtkNonOverlappingAMRAlgorithm, vtkOverlappingAMRAlgorithm, vtkParallelReader, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkPassInputTypeAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPiecewiseFunctionShiftScale, vtkPointSetAlgorithm, vtkPolyDataAlgorithm, vtkReaderAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkSimpleImageToImageFilter, vtkSimpleReader, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkThreadedImageAlgorithm, vtkTreeAlgorithm, vtkTrivialConsumer, vtkTrivialProducer, vtkUndirectedGraphAlgorithm, vtkUniformGridAMRAlgorithm, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkMoleculeMapper, vtkMoleculeToAtomBallFilter, vtkMoleculeToBondStickFilter, vtkMoleculeToLinesFilter, vtkMoleculeToPolyDataFilter, vtkPointSetToMoleculeFilter, vtkProteinRibbonFilter, vtkSimpleBondPerceiver, vtkOpenGLMoleculeMapper, vtkOpenSlideReader, vtkPSimpleBondPerceiver, vtkAMRGaussianPulseSource, vtkAMRSliceFilter, vtkImageToAMR, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataTangents, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkStaticCleanPolyData, vtkStreamerBase, vtkStripper, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCells, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractEdges, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedBlock, vtkExtractSelectedIds, vtkExtractSelectedLocations, vtkExtractSelectedPolyDataIds, vtkExtractSelectedRows, vtkExtractSelectedThresholds, vtkExtractSelection, vtkExtractTemporalFieldData, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticlePathFilter, vtkParticleTracer, vtkParticleTracerBase, vtkStreaklineFilter, vtkStreamSurface, vtkStreamTracer, vtkTemporalStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkClipClosedSurface, vtkClipConvexPolyData, vtkClipDataSet, vtkClipVolume, vtkContourTriangulator, vtkCountFaces, vtkCountVertices, vtkCursor2D, vtkCursor3D, vtkCurvatures, vtkDataSetGradient, vtkDataSetGradientPrecompute, vtkDataSetTriangleFilter, vtkDateToNumeric, vtkDeflectNormals, vtkDeformPointSet, vtkDensifyPolyData, vtkDicer, vtkDiscreteFlyingEdges2D, vtkDiscreteFlyingEdges3D, vtkDiscreteFlyingEdgesClipper2D, vtkDiscreteMarchingCubes, vtkDistancePolyDataFilter, vtkEdgePoints, vtkEqualizerFilter, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, vtkMultiBlockFromTimeSeriesFilter, vtkMultiBlockMergeFilter, vtkMultiThreshold, vtkNormalizeMatrixVectors, vtkOBBDicer, vtkOverlappingAMRLevelIdScalars, vtkPassArrays, vtkPassSelectedArrays, vtkPointConnectivityFilter, vtkPolyDataStreamer, vtkPolyDataToReebGraphFilter, vtkProbePolyhedron, vtkQuadraturePointInterpolator, vtkQuadraturePointsGenerator, vtkQuadratureSchemeDictionaryGenerator, vtkQuantizePolyDataPoints, vtkRandomAttributeGenerator, vtkRectilinearGridClip, vtkRectilinearGridToPointSet, vtkRectilinearGridToTetrahedra, vtkRecursiveDividingCubes, vtkReflectionFilter, vtkRemovePolyData, vtkRotationFilter, vtkSampleImplicitFunctionFilter, vtkShrinkFilter, vtkShrinkPolyData, vtkSpatialRepresentationFilter, vtkSphericalHarmonics, vtkSplineFilter, vtkSplitByCellScalarFilter, vtkSplitColumnComponents, vtkSplitField, vtkStructuredGridClip, vtkSubdivisionFilter, vtkSubPixelPositionEdgels, vtkSynchronizeTimeFilter, vtkTableBasedClipDataSet, vtkTableFFT, vtkTableToPolyData, vtkTableToStructuredGrid, vtkTemporalPathLineFilter, vtkTemporalStatistics, vtkTessellatorFilter, vtkTimeSourceExample, vtkTransformFilter, vtkTransformPolyDataFilter, vtkUncertaintyTubeFilter, vtkVertexGlyphFilter, vtkVolumeContourSpectrumFilter, vtkVoxelContoursToSurfaceFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkYoungsMaterialInterface, vtkGenericClip, vtkGenericContourFilter, vtkGenericCutter, vtkGenericDataSetTessellator, vtkGenericGeometryFilter, vtkGenericGlyph3DFilter, vtkGenericOutlineFilter, vtkGenericProbeFilter, vtkGenericStreamTracer, vtkCompositeDataGeometryFilter, vtkDataSetGhostGenerator, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRectilinearGridGeometryFilter, vtkStructuredGridGeometryFilter, vtkStructuredGridGhostDataGenerator, vtkStructuredPointsGeometryFilter, vtkUniformGridGhostDataGenerator, vtkUnstructuredGridGeometryFilter, vtkAdaptiveDataSetSurfaceFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridGeometry, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, vtkAdaptiveSubdivisionFilter, vtkBandedPolyDataContourFilter, vtkButterflySubdivisionFilter, vtkCollisionDetectionFilter, vtkContourLoopExtraction, vtkCookieCutter, vtkDijkstraGraphGeodesicPath, vtkDijkstraImageGeodesicPath, vtkFillHolesFilter, vtkFitToHeightMapFilter, vtkGeodesicPath, vtkGraphGeodesicPath, vtkHausdorffDistancePointSetFilter, vtkHyperTreeGridOutlineFilter, vtkImageDataOutlineFilter, vtkImprintFilter, vtkLinearCellExtrusionFilter, vtkLinearExtrusionFilter, vtkLinearSubdivisionFilter, vtkLoopSubdivisionFilter, vtkOutlineFilter, vtkPolyDataPointSampler, vtkProjectedTexture, vtkQuadRotationalExtrusionFilter, vtkRibbonFilter, vtkRotationalExtrusionFilter, vtkRuledSurfaceFilter, vtkSectorSource, vtkSelectEnclosedPoints, vtkSelectPolyData, vtkSpherePuzzle, vtkSpherePuzzleArrows, vtkSubdivideTetra, vtkTrimmedExtrusionFilter, vtkVolumeOfRevolutionFilter, vtkOTDensityMap, vtkOTFilter, vtkOTKernelSmoothing, vtkAdaptiveTemporalInterpolator, vtkAggregateDataSetFilter, vtkAngularPeriodicFilter, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkPartitionBalancer, vtkPassThroughFilter, vtkPCellDataToPointData, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkProcessIdScalars, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkUnstructuredGridGhostCellsGenerator, vtkAdaptiveResampleToImage, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPTemporalStreamTracer, vtkPConnectivityFilter, vtkPDataSetGhostGenerator, vtkPDistributedDataFilter, vtkPStructuredGridGhostDataGenerator, vtkPUniformGridGhostDataGenerator, vtkPUnstructuredGridGhostCellsGenerator, vtkExtractPiece, vtkMemoryLimitImageDataStreamer, vtkPComputeHistogram2DOutliers, vtkPExtractHistogram2D, vtkPPairwiseExtractHistogram2D, vtkTransmitImageDataPiece, vtkDistributedPointCloudFilter, vtkPExtractGrid, vtkPExtractRectilinearGrid, vtkPExtractVOI, vtkPAutoCorrelativeStatistics, vtkPBivariateLinearTableThreshold, vtkPContingencyStatistics, vtkPCorrelativeStatistics, vtkPDescriptiveStatistics, vtkPKMeansStatistics, vtkPMultiCorrelativeStatistics, vtkPOrderStatistics, vtkPPCAStatistics, vtkPCellSizeFilter, vtkBoundedPointSource, vtkConnectedPointsFilter, vtkConvertToPointCloud, vtkDensifyPointCloudFilter, vtkEuclideanClusterExtraction, vtkExtractEnclosedPoints, vtkExtractHierarchicalBins, vtkExtractPointCloudPiece, vtkExtractPoints, vtkExtractSurface, vtkFitImplicitFunction, vtkHierarchicalBinningFilter, vtkMaskPointsFilter, vtkPCACurvatureEstimation, vtkPCANormalEstimation, vtkPointCloudFilter, vtkPointDensityFilter, vtkPointInterpolator, vtkPointInterpolator2D, vtkPointOccupancyFilter, vtkPointSmoothingFilter, vtkPoissonDiskSampler, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCapsuleSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToYIQ, vtkImageYIQToRGB, vtkExtractVOI, vtkImageAppendComponents, vtkImageBlend, vtkImageBSplineCoefficients, vtkImageCacheFilter, vtkImageCast, vtkImageChangeInformation, vtkImageClip, vtkImageConstantPad, vtkImageDataStreamer, vtkImageDecomposeFilter, vtkImageDifference, vtkImageExtractComponents, vtkImageFlip, vtkImageIterateFilter, vtkImageMagnify, vtkImageMapToColors, vtkImageMask, vtkImageMirrorPad, vtkImagePadFilter, vtkImagePermute, vtkImageProbeFilter, vtkImageResample, vtkImageResize, vtkImageReslice, vtkImageResliceToColors, vtkImageShiftScale, vtkImageShrink3D, vtkImageStencilAlgorithm, vtkImageStencilSource, vtkImageThreshold, vtkImageTranslateExtent, vtkImageWrapPad, vtkRTAnalyticSource, vtkImageButterworthHighPass, vtkImageButterworthLowPass, vtkImageFFT, vtkImageFourierCenter, vtkImageFourierFilter, vtkImageIdealHighPass, vtkImageIdealLowPass, vtkImageRFFT, vtkImageAnisotropicDiffusion2D, vtkImageAnisotropicDiffusion3D, vtkImageCheckerboard, vtkImageCityBlockDistance, vtkImageConvolve, vtkImageCorrelation, vtkImageEuclideanDistance, vtkImageEuclideanToPolar, vtkImageGaussianSmooth, vtkImageGradient, vtkImageGradientMagnitude, vtkImageHybridMedian2D, vtkImageLaplacian, vtkImageMedian3D, vtkImageNormalize, vtkImageRange3D, vtkImageSeparableConvolution, vtkImageSlab, vtkImageSlabReslice, vtkImageSobel2D, vtkImageSobel3D, vtkImageSpatialAlgorithm, vtkImageVariance3D, vtkSimpleImageFilterExample, vtkBooleanTexture, vtkCheckerboardSplatter, vtkFastSplatter, vtkGaussianSplatter, vtkImageCursor3D, vtkImageRectilinearWipe, vtkImageToPoints, vtkPointLoad, vtkSampleFunction, vtkShepardMethod, vtkSurfaceReconstructionFilter, vtkTriangularTexture, vtkVoxelModeller, vtkImageDivergence, vtkImageDotProduct, vtkImageLogarithmicScale, vtkImageLogic, vtkImageMagnitude, vtkImageMaskBits, vtkImageMathematics, vtkImageWeightedSum, vtkImageConnectivityFilter, vtkImageContinuousDilate3D, vtkImageContinuousErode3D, vtkImageDilateErode3D, vtkImageIslandRemoval2D, vtkImageNonMaximumSuppression, vtkImageOpenClose3D, vtkImageSeedConnectivity, vtkImageSkeleton2D, vtkImageThresholdConnectivity, vtkOpenGLImageGradient, vtkImageCanvasSource2D, vtkImageEllipsoidSource, vtkImageGaussianSource, vtkImageGridSource, vtkImageMandelbrotSource, vtkImageNoiseSource, vtkImageSinusoidSource, vtkImageAccumulate, vtkImageHistogram, vtkImageHistogramStatistics, vtkImageStencil, vtkImageStencilToImage, vtkImageToImageStencil, vtkImplicitFunctionToImageStencil, vtkLassoStencilSource, vtkPolyDataToImageStencil, vtkROIStencilSource, vtkBoostBetweennessClustering, vtkBoostBiconnectedComponents, vtkBoostBrandesCentrality, vtkBoostBreadthFirstSearch, vtkBoostBreadthFirstSearchTree, vtkBoostConnectedComponents, vtkBoostDividedEdgeBundling, vtkBoostExtractLargestComponent, vtkBoostKruskalMinimumSpanningTree, vtkBoostLogWeighting, vtkBoostPrimMinimumSpanningTree, vtkBoostRandomSparseArraySource, vtkBoostSplitTableField, vtkAddMembershipArray, vtkAdjacencyMatrixToEdgeTable, vtkArrayNorm, vtkArrayToTable, vtkCollapseGraph, vtkCollapseVerticesByArray, vtkContinuousScatterplot, vtkDataObjectToTable, vtkDotProductSimilarity, vtkEdgeCenters, vtkExpandSelectedGraph, vtkExtractSelectedGraph, vtkExtractSelectedTree, vtkGenerateIndexArray, vtkGraphHierarchicalBundleEdges, vtkGroupLeafVertices, vtkKCoreDecomposition, vtkMergeColumns, vtkMergeGraphs, vtkMergeTables, vtkNetworkHierarchy, vtkPipelineGraphSource, vtkPruneTreeFilter, vtkRandomGraphSource, vtkReduceTable, vtkRemoveHiddenData, vtkRemoveIsolatedVertices, vtkSparseArrayToTable, vtkStreamGraph, vtkStringToCategory, vtkStringToNumeric, vtkTableToArray, vtkTableToGraph, vtkTableToSparseArray, vtkTableToTreeFilter, vtkThresholdGraph, vtkThresholdTable, vtkTransferAttributes, vtkTransposeMatrix, vtkTreeDifferenceFilter, vtkTreeFieldAggregator, vtkTreeLevelsFilter, vtkVertexDegree, vtkWordCloud, vtkAreaLayout, vtkAssignCoordinates, vtkCirclePackLayout, vtkCirclePackToPolyData, vtkEdgeLayout, vtkGraphLayout, vtkKCoreLayout, vtkPerturbCoincidentVertices, vtkSplineGraphEdges, vtkTreeMapLayout, vtkTreeMapToPolyData, vtkTreeRingToPolyData, vtkCameraHandleSource, vtkResliceCursorPolyDataAlgorithm, vtkADIOS2CoreImageReader, vtkADIOS2VTXReader, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkAMREnzoParticlesReader, vtkAMREnzoReader, vtkAMReXGridReader, vtkAMReXParticlesReader, vtkAMRFlashParticlesReader, vtkAMRFlashReader, vtkAMRVelodyneReader, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkAbstractParticleWriter, vtkAbstractPolyDataReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkGenericEnSightReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkGDALRasterReader, vtkGDALVectorReader, vtkGeoJSONReader, vtkGeoJSONWriter, vtkAVSucdReader, vtkBYUReader, vtkBYUWriter, vtkChacoReader, vtkFacetWriter, vtkFLUENTReader, vtkGAMBITReader, vtkGLTFReader, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesReader, vtkMCubesWriter, vtkMFIXReader, vtkOBJReader, vtkOBJWriter, vtkOpenFOAMReader, vtkParticleReader, vtkProStarReader, vtkPTSReader, vtkSTLReader, vtkSTLWriter, vtkTecplotReader, vtkWindBladeReader, vtkH5PartReader, vtkH5RageReader, vtkHDFReader, vtkBMPReader, vtkBMPWriter, vtkDEMReader, vtkDICOMImageReader, vtkGESignaReader, vtkHDRReader, vtkImageExport, vtkImageImport, vtkImageReader, vtkImageReader2, vtkImageWriter, vtkJPEGReader, vtkJPEGWriter, vtkJSONImageWriter, vtkMedicalImageReader2, vtkMetaImageReader, vtkMetaImageWriter, vtkMRCReader, vtkNIFTIImageReader, vtkNIFTIImageWriter, vtkNrrdReader, vtkOMETIFFReader, vtkPNGReader, vtkPNGWriter, vtkPNMReader, vtkPNMWriter, vtkPostScriptWriter, vtkSEPReader, vtkSLCReader, vtkTIFFReader, vtkTIFFWriter, vtkVolume16Reader, vtkVolumeReader, vtkOBJPolyDataProcessor, vtkBiomTableReader, vtkChacoGraphReader, vtkDelimitedTextReader, vtkDIMACSGraphReader, vtkDIMACSGraphWriter, vtkFixedWidthTextReader, vtkISIReader, vtkMultiNewickTreeReader, vtkNewickTreeReader, vtkNewickTreeWriter, vtkPhyloXMLTreeReader, vtkPhyloXMLTreeWriter, vtkRISReader, vtkTemporalDelimitedTextReader, vtkTulipReader, vtkXGMLReader, vtkXMLTreeReader, vtkIOSSReader, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkPolyDataReader, vtkPolyDataWriter, vtkRectilinearGridReader, vtkRectilinearGridWriter, vtkSimplePointsReader, vtkSimplePointsWriter, vtkStructuredGridReader, vtkStructuredGridWriter, vtkStructuredPointsReader, vtkStructuredPointsWriter, vtkTableReader, vtkTableWriter, vtkTreeReader, vtkTreeWriter, vtkUnstructuredGridReader, vtkUnstructuredGridWriter, vtkLSDynaReader, vtkMINCImageReader, vtkMINCImageWriter, vtkMNIObjectReader, vtkMNIObjectWriter, vtkMNITagPointReader, vtkMNITagPointWriter, vtkMNITransformReader, vtkMNITransformWriter, vtkMotionFXCFGReader, vtkAVIWriter, vtkGenericMovieWriter, vtkMP4Writer, vtkMPIImageReader, vtkPNrrdReader, vtkMPIMultiBlockPLOT3DReader, vtkPWindBladeReader, vtkMySQLToTableReader, vtkTableToMySQLWriter, vtkMPASReader, vtkNetCDFCAMReader, vtkNetCDFCFReader, vtkNetCDFPOPReader, vtkNetCDFReader, vtkSLACParticleReader, vtkSLACReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, vtkXMLPPartitionedDataSetWriter, vtkXMLPPolyDataWriter, vtkXMLPRectilinearGridWriter, vtkXMLPStructuredDataWriter, vtkXMLPStructuredGridWriter, vtkXMLPTableWriter, vtkXMLPUniformGridAMRWriter, vtkXMLPUnstructuredDataWriter, vtkXMLPUnstructuredGridWriter, vtkXMLWriter2, vtkPDALReader, vtkPIOReader, vtkPLYReader, vtkPLYWriter, vtkPostgreSQLToTableReader, vtkTableToPostgreSQLWriter, vtkSegYReader, vtkDatabaseToTableReader, vtkRowQueryToTable, vtkSQLDatabaseTableSource, vtkSQLiteToTableReader, vtkTableToDatabaseWriter, vtkTableToSQLiteWriter, vtkTecplotTableReader, vtkTRUCHASReader, vtkVeraOutReader, vtkVideoSource, vtkWin32VideoSource, vtkVPICReader, vtkXdmfReader, vtkXdmfWriter, vtkXdmf3Reader, vtkXdmf3Writer, vtkRTXMLPolyDataReader, vtkXMLCompositeDataReader, vtkXMLCompositeDataWriter, vtkXMLDataObjectWriter, vtkXMLDataReader, vtkXMLDataSetWriter, vtkXMLGenericDataObjectReader, vtkXMLHierarchicalBoxDataReader, vtkXMLHierarchicalBoxDataWriter, vtkXMLHierarchicalDataReader, vtkXMLHyperTreeGridReader, vtkXMLHyperTreeGridWriter, vtkXMLImageDataReader, vtkXMLImageDataWriter, vtkXMLMultiBlockDataReader, vtkXMLMultiBlockDataWriter, vtkXMLMultiGroupDataReader, vtkXMLPartitionedDataSetCollectionReader, vtkXMLPartitionedDataSetReader, vtkXMLPDataObjectReader, vtkXMLPDataReader, vtkXMLPHyperTreeGridReader, vtkXMLPImageDataReader, vtkXMLPolyDataReader, vtkXMLPolyDataWriter, vtkXMLPPolyDataReader, vtkXMLPRectilinearGridReader, vtkXMLPStructuredDataReader, vtkXMLPStructuredGridReader, vtkXMLPTableReader, vtkXMLPUnstructuredDataReader, vtkXMLPUnstructuredGridReader, vtkXMLReader, vtkXMLRectilinearGridReader, vtkXMLRectilinearGridWriter, vtkXMLStructuredDataReader, vtkXMLStructuredDataWriter, vtkXMLStructuredGridReader, vtkXMLStructuredGridWriter, vtkXMLTableReader, vtkXMLTableWriter, vtkXMLUniformGridAMRReader, vtkXMLUniformGridAMRWriter, vtkXMLUnstructuredDataReader, vtkXMLUnstructuredDataWriter, vtkXMLUnstructuredGridReader, vtkXMLUnstructuredGridWriter, vtkXMLWriter, vtkXMLWriterBase, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkContextMapper2D, vtkAbstractHyperTreeGridMapper, vtkAbstractMapper, vtkAbstractMapper3D, vtkAbstractVolumeMapper, vtkCompositePolyDataMapper, vtkDataSetMapper, vtkDistanceToCamera, vtkGlyph3DMapper, vtkGraphMapper, vtkGraphToGlyphs, vtkHierarchicalPolyDataMapper, vtkImageMapper, vtkImageMapper3D, vtkImageSliceMapper, vtkLabeledContourMapper, vtkMapArrayValues, vtkMapper, vtkMapper2D, vtkPointGaussianMapper, vtkPolyDataMapper, vtkPolyDataMapper2D, vtkRendererSource, vtkResizingWindowToImageFilter, vtkSelectVisiblePoints, vtkTextMapper, vtkTexture, vtkTransformCoordinateSystems, vtkWindowToImageFilter, vtkVectorText, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkCompositeMapperHelper2, vtkCompositePolyDataMapper2, vtkEquirectangularToCubeMapTexture, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkSmartVolumeMapper, vtkConvertSelectionDomain, vtkDataRepresentation, vtkEmptyRepresentation, vtkApplyColors, vtkApplyIcons, vtkParallelCoordinatesHistogramRepresentation, vtkParallelCoordinatesRepresentation, vtkRenderedGraphRepresentation, vtkRenderedHierarchyRepresentation, vtkRenderedRepresentation, vtkRenderedSurfaceRepresentation, vtkRenderedTreeAreaRepresentation, vtkQtTableRepresentation, vtkImageToStructuredGrid, vtkUniformGridPartitioner, vtkAMRCutPlane, vtkAMRResampleFilter, vtkAMRToMultiBlockFilter, vtkRectilinearGridPartitioner, and vtkStructuredGridPartitioner.
int vtkAlgorithm::HasExecutive | ( | ) |
Check whether this algorithm has an assigned executive.
This will NOT create a default executive.
vtkExecutive * vtkAlgorithm::GetExecutive | ( | ) |
Get this algorithm's executive.
If it has none, a default executive will be created.
|
virtual |
Set this algorithm's executive.
This algorithm is removed from any executive to which it has previously been assigned and then assigned to the given executive.
|
virtual |
Upstream/Downstream requests form the generalized interface through which executives invoke a algorithm's functionality.
Upstream requests correspond to information flow from the algorithm's outputs to its inputs. Downstream requests correspond to information flow from the algorithm's inputs to its outputs.
A downstream request is defined by the contents of the request information object. The input to the request is stored in the input information vector passed to ProcessRequest. The results of an downstream request are stored in the output information vector passed to ProcessRequest.
An upstream request is defined by the contents of the request information object. The input to the request is stored in the output information vector passed to ProcessRequest. The results of an upstream request are stored in the input information vector passed to ProcessRequest.
It returns the boolean status of the pipeline (false means failure).
Reimplemented in vtkmExternalFaces, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkDataObjectAlgorithm, vtkDirectedGraphAlgorithm, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHyperTreeGridAlgorithm, vtkImageAlgorithm, vtkMoleculeAlgorithm, vtkMultiTimeStepAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPolyDataAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkTreeAlgorithm, vtkTrivialProducer, vtkUndirectedGraphAlgorithm, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkAppendDataSets, vtkConnectivityFilter, vtkResampleToImage, vtkStreamerBase, vtkExtractDataOverTime, vtkImplicitModeller, vtkRenderLargeImage, vtkTransformToGrid, vtkMemoryLimitImageDataStreamer, vtkSignedDistance, vtkUnsignedDistance, vtkSMPContourGrid, vtkImageDataStreamer, vtkImageStencilAlgorithm, vtkImageOpenClose3D, vtkADIOS2CoreImageReader, vtkCGNSFileSeriesReader, vtkExodusIIReader, vtkFidesReader, vtkXMLPMultiBlockDataWriter, vtkXdmf3Reader, vtkXMLCompositeDataWriter, vtkXMLTableWriter, vtkXMLUnstructuredDataWriter, vtkPolyDataMapper, vtkRendererSource, vtkResizingWindowToImageFilter, vtkWindowToImageFilter, vtkLabelHierarchyAlgorithm, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkReaderAlgorithm, vtkPythonAlgorithm, vtkWindBladeReader, vtkIOSSReader, vtkMNITransformReader, vtkMNITransformWriter, vtkXMLWriter2, vtkImageMapper3D, vtkImageSliceMapper, vtkImageResliceMapper, vtkCompositeDataSetAlgorithm, vtkDataSetAlgorithm, vtkEnsembleSource, vtkHierarchicalBoxDataSetAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkPassInputTypeAlgorithm, vtkPointSetAlgorithm, vtkUniformGridAMRAlgorithm, vtkParticleTracerBase, vtkTemporalStreamTracer, vtkPassArrays, vtkCompositeDataGeometryFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkHyperTreeGridCellCenters, vtkPieceRequestFilter, vtkGenerateIndexArray, vtkStringToCategory, vtkStringToNumeric, vtkWriter, vtkCPExodusIIInSituReader, vtkExodusIIWriter, vtkOpenVDBWriter, vtkXMLPDataObjectWriter, vtkXdmfReader, vtkXMLReader, vtkXMLStructuredDataWriter, and vtkXMLWriter.
vtkTypeBool vtkAlgorithm::ProcessRequest | ( | vtkInformation * | request, |
vtkCollection * | inInfo, | ||
vtkInformationVector * | outInfo | ||
) |
Version of ProcessRequest() that is wrapped.
This converts the collection to an array and calls the other version.
|
virtual |
A special version of ProcessRequest meant specifically for the pipeline modified time request.
See vtkExecutive::ComputePipelineMTime() for details.
Reimplemented in vtkImageOpenClose3D, vtkImageImport, vtkClipClosedSurface, and vtkVolumeOutlineSource.
|
virtual |
This method gives the algorithm a chance to modify the contents of a request before or after (specified in the when argument) it is forwarded.
The default implementation is empty. Returns 1 on success, 0 on failure. When can be either vtkExecutive::BeforeForward or vtkExecutive::AfterForward.
vtkInformation * vtkAlgorithm::GetInputPortInformation | ( | int | port | ) |
Get the information object associated with an input port.
There is one input port per kind of input to the algorithm. Each input port tells executives what kind of data and downstream requests this algorithm can handle for that input.
vtkInformation * vtkAlgorithm::GetOutputPortInformation | ( | int | port | ) |
Get the information object associated with an output port.
There is one output port per output from the algorithm. Each output port tells executives what kind of upstream requests this algorithm can handle for that output.
|
virtual |
Set/Get the information object associated with this algorithm.
|
virtual |
Set/Get the information object associated with this algorithm.
int vtkAlgorithm::GetNumberOfInputPorts | ( | ) |
Get the number of input ports used by the algorithm.
int vtkAlgorithm::GetNumberOfOutputPorts | ( | ) |
Get the number of output ports provided by the algorithm.
|
overridevirtual |
Participate in garbage collection.
Reimplemented from vtkObjectBase.
|
overridevirtual |
Participate in garbage collection.
Reimplemented from vtkObjectBase.
|
virtual |
Set/Get the AbortExecute flag for the process object.
Process objects may handle premature termination of execution in different ways.
|
virtual |
Set/Get the AbortExecute flag for the process object.
Process objects may handle premature termination of execution in different ways.
|
virtual |
Set/Get the AbortExecute flag for the process object.
Process objects may handle premature termination of execution in different ways.
|
virtual |
Set/Get the AbortExecute flag for the process object.
Process objects may handle premature termination of execution in different ways.
|
virtual |
Get the execution progress of a process object.
void vtkAlgorithm::SetProgress | ( | double | ) |
SetProgress
is deprecated.
Subclasses should use UpdateProgress
to report progress updates.
void vtkAlgorithm::UpdateProgress | ( | double | amount | ) |
Update the progress of the process object.
If a ProgressMethod exists, executes it. Then set the Progress ivar to amount. The parameter amount should range between (0,1).
void vtkAlgorithm::SetProgressShiftScale | ( | double | shift, |
double | scale | ||
) |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress
is called.
By default shift is set to 0, and scale is set to 1.0. This is useful when the vtkAlgorithm instance is used as an internal algorithm to solve only a part of a whole problem.
If calling on a internal vtkAlgorithm, make sure you take into consideration that values set of the outer vtkAlgorithm as well since the outer vtkAlgorithm itself may be nested in another algorithm.
|
virtual |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress
is called.
By default shift is set to 0, and scale is set to 1.0. This is useful when the vtkAlgorithm instance is used as an internal algorithm to solve only a part of a whole problem.
If calling on a internal vtkAlgorithm, make sure you take into consideration that values set of the outer vtkAlgorithm as well since the outer vtkAlgorithm itself may be nested in another algorithm.
|
virtual |
Specify the shift and scale values to use to apply to the progress amount when UpdateProgress
is called.
By default shift is set to 0, and scale is set to 1.0. This is useful when the vtkAlgorithm instance is used as an internal algorithm to solve only a part of a whole problem.
If calling on a internal vtkAlgorithm, make sure you take into consideration that values set of the outer vtkAlgorithm as well since the outer vtkAlgorithm itself may be nested in another algorithm.
void vtkAlgorithm::SetProgressText | ( | const char * | ptext | ) |
Set the current text message associated with the progress state.
This may be used by a calling process/GUI. Note: Because SetProgressText() is called from inside RequestData() it does not modify the algorithm object. Algorithms are not allowed to modify themselves from inside RequestData().
|
virtual |
Set the current text message associated with the progress state.
This may be used by a calling process/GUI. Note: Because SetProgressText() is called from inside RequestData() it does not modify the algorithm object. Algorithms are not allowed to modify themselves from inside RequestData().
|
virtual |
The error code contains a possible error that occurred while reading or writing the file.
|
virtual |
Set the input data arrays that this algorithm will process.
Specifically the idx array that this algorithm will process (starting from 0) is the array on port, connection with the specified association and name or attribute type (such as SCALARS). The fieldAssociation refers to which field in the data object the array is stored. See vtkDataObject::FieldAssociations for detail.
Reimplemented in vtkCompositePolyDataMapper2, and vtkCompositePolyDataMapper2.
|
virtual |
Set the input data arrays that this algorithm will process.
Specifically the idx array that this algorithm will process (starting from 0) is the array on port, connection with the specified association and name or attribute type (such as SCALARS). The fieldAssociation refers to which field in the data object the array is stored. See vtkDataObject::FieldAssociations for detail.
Reimplemented in vtkCompositePolyDataMapper2, and vtkCompositePolyDataMapper2.
|
virtual |
Set the input data arrays that this algorithm will process.
Specifically the idx array that this algorithm will process (starting from 0) is the array on port, connection with the specified association and name or attribute type (such as SCALARS). The fieldAssociation refers to which field in the data object the array is stored. See vtkDataObject::FieldAssociations for detail.
Reimplemented in vtkCompositePolyDataMapper2, and vtkCompositePolyDataMapper2.
|
virtual |
String based versions of SetInputArrayToProcess().
Because fieldAssociation and fieldAttributeType are enums, they cannot be easily accessed from scripting language. These methods provides an easy and safe way of passing association and attribute type information. Field association is one of the following:
* vtkDataObject::FIELD_ASSOCIATION_POINTS * vtkDataObject::FIELD_ASSOCIATION_CELLS * vtkDataObject::FIELD_ASSOCIATION_NONE * vtkDataObject::FIELD_ASSOCIATION_POINTS_THEN_CELLS *
Attribute type is one of the following:
* vtkDataSetAttributes::SCALARS * vtkDataSetAttributes::VECTORS * vtkDataSetAttributes::NORMALS * vtkDataSetAttributes::TCOORDS * vtkDataSetAttributes::TENSORS *
If the last argument is not an attribute type, it is assumed to be an array name.
Reimplemented in vtkCompositePolyDataMapper2.
vtkInformation * vtkAlgorithm::GetInputArrayInformation | ( | int | idx | ) |
Get the info object for the specified input array to this algorithm.
void vtkAlgorithm::RemoveAllInputs | ( | ) |
Remove all the input data.
vtkDataObject * vtkAlgorithm::GetOutputDataObject | ( | int | port | ) |
Get the data object that will contain the algorithm output for the given port.
vtkDataObject * vtkAlgorithm::GetInputDataObject | ( | int | port, |
int | connection | ||
) |
Get the data object that will contain the algorithm input for the given port and given connection.
|
virtual |
Set the connection for the given input port index.
Each input port of a filter has a specific purpose. A port may have zero or more connections and the required number is specified by each filter. Setting the connection with this method removes all other connections from the port. To add more than one connection use AddInputConnection().
The input for the connection is the output port of another filter, which is obtained with GetOutputPort(). Typical usage is
filter2->SetInputConnection(0, filter1->GetOutputPort(0)).
Reimplemented in vtkGPUVolumeRayCastMapper, vtkAMRVolumeMapper, and vtkAbstractHyperTreeGridMapper.
|
virtual |
Set the connection for the given input port index.
Each input port of a filter has a specific purpose. A port may have zero or more connections and the required number is specified by each filter. Setting the connection with this method removes all other connections from the port. To add more than one connection use AddInputConnection().
The input for the connection is the output port of another filter, which is obtained with GetOutputPort(). Typical usage is
filter2->SetInputConnection(0, filter1->GetOutputPort(0)).
Reimplemented in vtkAbstractHyperTreeGridMapper, vtkGPUVolumeRayCastMapper, and vtkAMRVolumeMapper.
|
virtual |
Add a connection to the given input port index.
See SetInputConnection() for details on input connections. This method is the complement to RemoveInputConnection() in that it adds only the connection specified without affecting other connections. Typical usage is
filter2->AddInputConnection(0, filter1->GetOutputPort(0)).
|
virtual |
Add a connection to the given input port index.
See SetInputConnection() for details on input connections. This method is the complement to RemoveInputConnection() in that it adds only the connection specified without affecting other connections. Typical usage is
filter2->AddInputConnection(0, filter1->GetOutputPort(0)).
|
virtual |
Remove a connection from the given input port index.
See SetInputConnection() for details on input connection. This method is the complement to AddInputConnection() in that it removes only the connection specified without affecting other connections. Typical usage is
filter2->RemoveInputConnection(0, filter1->GetOutputPort(0)).
Reimplemented in vtkGPUVolumeRayCastMapper.
|
virtual |
Remove a connection given by index idx.
Reimplemented in vtkGPUVolumeRayCastMapper.
|
virtual |
Removes all input connections.
|
virtual |
Sets the data-object as an input on the given port index.
Setting the input with this method removes all other connections from the port. Internally, this method creates a vtkTrivialProducer instance and sets that as the input-connection for the given port. It is safe to call this method repeatedly with the same input data object. The MTime of the vtkAlgorithm will not change unless the data object changed.
|
inlinevirtual |
Definition at line 521 of file vtkAlgorithm.h.
|
virtual |
Add the data-object as an input to this given port.
This will add a new input connection on the specified port without affecting any existing connections on the same input port.
|
inlinevirtual |
Definition at line 529 of file vtkAlgorithm.h.
vtkAlgorithmOutput * vtkAlgorithm::GetOutputPort | ( | int | index | ) |
Get a proxy object corresponding to the given output port of this algorithm.
The proxy object can be passed to another algorithm's SetInputConnection(), AddInputConnection(), and RemoveInputConnection() methods to modify pipeline connectivity.
|
inline |
Definition at line 538 of file vtkAlgorithm.h.
int vtkAlgorithm::GetNumberOfInputConnections | ( | int | port | ) |
Get the number of inputs currently connected to a port.
int vtkAlgorithm::GetTotalNumberOfInputConnections | ( | ) |
Get the total number of inputs for this algorithm.
vtkAlgorithmOutput * vtkAlgorithm::GetInputConnection | ( | int | port, |
int | index | ||
) |
Get the algorithm output port connected to an input port.
vtkAlgorithm * vtkAlgorithm::GetInputAlgorithm | ( | int | port, |
int | index, | ||
int & | algPort | ||
) |
Returns the algorithm and the output port index of that algorithm connected to a port-index pair.
vtkAlgorithm * vtkAlgorithm::GetInputAlgorithm | ( | int | port, |
int | index | ||
) |
Returns the algorithm connected to a port-index pair.
|
inline |
Equivalent to GetInputAlgorithm(0, 0).
Definition at line 569 of file vtkAlgorithm.h.
vtkExecutive * vtkAlgorithm::GetInputExecutive | ( | int | port, |
int | index | ||
) |
Returns the executive associated with a particular input connection.
|
inline |
Equivalent to GetInputExecutive(0, 0)
Definition at line 580 of file vtkAlgorithm.h.
vtkInformation * vtkAlgorithm::GetInputInformation | ( | int | port, |
int | index | ||
) |
Return the information object that is associated with a particular input connection.
This can be used to get meta-data coming from the REQUEST_INFORMATION pass and set requests for the REQUEST_UPDATE_EXTENT pass. NOTE: Do not use this in any of the pipeline passes. Use the information objects passed as arguments instead.
|
inline |
Equivalent to GetInputInformation(0, 0)
Definition at line 595 of file vtkAlgorithm.h.
vtkInformation * vtkAlgorithm::GetOutputInformation | ( | int | port | ) |
Return the information object that is associated with a particular output port.
This can be used to set meta-data coming during the REQUEST_INFORMATION. NOTE: Do not use this in any of the pipeline passes. Use the information objects passed as arguments instead.
|
virtual |
Bring this algorithm's outputs up-to-date.
Reimplemented in vtkPolyDataMapper, and vtkImageResliceMapper.
|
virtual |
Bring this algorithm's outputs up-to-date.
Reimplemented in vtkPolyDataMapper, and vtkImageResliceMapper.
|
virtual |
This method enables the passing of data requests to the algorithm to be used during execution (in addition to bringing a particular port up-to-date).
The requests argument should contain an information object for each port that requests need to be passed. For each of those, the pipeline will copy all keys to the output information before execution. This is equivalent to:
* algorithm->UpdateInformation(); * for (int i=0; i<algorithm->GetNumberOfOutputPorts(); i++) * { * vtkInformation* portRequests = requests->GetInformationObject(i); * if (portRequests) * { * algorithm->GetOutputInformation(i)->Append(portRequests); * } * } * algorithm->Update(); *
Available requests include UPDATE_PIECE_NUMBER(), UPDATE_NUMBER_OF_PIECES() UPDATE_EXTENT() etc etc.
Reimplemented in vtkPolyDataMapper, and vtkImageResliceMapper.
|
virtual |
Convenience method to update an algorithm after passing requests to its first output port.
See documentation for Update(int port, vtkInformationVector* requests) for details.
Reimplemented in vtkPolyDataMapper, and vtkImageResliceMapper.
|
virtual |
Convenience method to update an algorithm after passing requests to its first output port.
See documentation for Update(int port, vtkInformationVector* requests) for details. Supports piece and extent (optional) requests.
|
virtual |
Convenience method to update an algorithm after passing requests to its first output port.
Supports extent request.
|
virtual |
Convenience method to update an algorithm after passing requests to its first output port.
See documentation for Update(int port, vtkInformationVector* requests) for details. Supports time, piece (optional) and extent (optional) requests.
|
virtual |
Bring the algorithm's information up-to-date.
|
virtual |
Create output object(s).
|
virtual |
Propagate meta-data upstream.
|
virtual |
Bring this algorithm's outputs up-to-date.
void vtkAlgorithm::ConvertTotalInputToPortConnection | ( | int | ind, |
int & | port, | ||
int & | conn | ||
) |
Convenience routine to convert from a linear ordering of input connections to a port/connection pair.
|
virtual |
Turn release data flag on or off for all output ports.
|
virtual |
Turn release data flag on or off for all output ports.
void vtkAlgorithm::ReleaseDataFlagOn | ( | ) |
Turn release data flag on or off for all output ports.
void vtkAlgorithm::ReleaseDataFlagOff | ( | ) |
Turn release data flag on or off for all output ports.
int vtkAlgorithm::UpdateExtentIsEmpty | ( | vtkInformation * | pinfo, |
vtkDataObject * | output | ||
) |
This detects when the UpdateExtent will generate no data This condition is satisfied when the UpdateExtent has zero volume (0,-1,...) or the UpdateNumberOfPieces is 0.
The source uses this call to determine whether to call Execute.
int vtkAlgorithm::UpdateExtentIsEmpty | ( | vtkInformation * | pinfo, |
int | extentType | ||
) |
This detects when the UpdateExtent will generate no data This condition is satisfied when the UpdateExtent has zero volume (0,-1,...) or the UpdateNumberOfPieces is 0.
The source uses this call to determine whether to call Execute.
|
static |
If the DefaultExecutivePrototype is set, a copy of it is created in CreateDefaultExecutive() using NewInstance().
|
inline |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
Definition at line 737 of file vtkAlgorithm.h.
int * vtkAlgorithm::GetUpdateExtent | ( | int | port | ) |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
|
inline |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
Definition at line 739 of file vtkAlgorithm.h.
void vtkAlgorithm::GetUpdateExtent | ( | int | port, |
int & | x0, | ||
int & | x1, | ||
int & | y0, | ||
int & | y1, | ||
int & | z0, | ||
int & | z1 | ||
) |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
|
inline |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
Definition at line 744 of file vtkAlgorithm.h.
void vtkAlgorithm::GetUpdateExtent | ( | int | port, |
int | extent[6] | ||
) |
These functions return the update extent for output ports that use 3D extents.
Where port is not specified, it is assumed to be 0.
|
inline |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
Definition at line 754 of file vtkAlgorithm.h.
int vtkAlgorithm::GetUpdatePiece | ( | int | port | ) |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
|
inline |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
Definition at line 756 of file vtkAlgorithm.h.
int vtkAlgorithm::GetUpdateNumberOfPieces | ( | int | port | ) |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
|
inline |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
Definition at line 758 of file vtkAlgorithm.h.
int vtkAlgorithm::GetUpdateGhostLevel | ( | int | port | ) |
These functions return the update extent for output ports that use piece extents.
Where port is not specified, it is assumed to be 0.
void vtkAlgorithm::SetProgressObserver | ( | vtkProgressObserver * | ) |
If an ProgressObserver is set, the algorithm will report progress through it rather than directly.
This means that it will call UpdateProgress() on the ProgressObserver rather than itself report it and set progress. This is most useful in situations where multiple threads are executing an algorithm at the same time and want to handle progress locally.
|
virtual |
If an ProgressObserver is set, the algorithm will report progress through it rather than directly.
This means that it will call UpdateProgress() on the ProgressObserver rather than itself report it and set progress. This is most useful in situations where multiple threads are executing an algorithm at the same time and want to handle progress locally.
|
staticprotected |
|
protectedvirtual |
Fill the input port information objects for this algorithm.
This is invoked by the first call to GetInputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented in vtkImageWeightedSum, vtkmClip, vtkmCoordinateSystemTransform, vtkmHistogram, vtkmNDHistogram, vtkmPointTransform, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkImageAlgorithm, vtkMoleculeAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkNonOverlappingAMRAlgorithm, vtkOverlappingAMRAlgorithm, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkPassInputTypeAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPointSetAlgorithm, vtkPolyDataAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkTreeAlgorithm, vtkUndirectedGraphAlgorithm, vtkUniformGridAMRAlgorithm, vtkUniformGridPartitioner, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkMoleculeMapper, vtkPointSetToMoleculeFilter, vtkAMRCutPlane, vtkAMRResampleFilter, vtkAMRSliceFilter, vtkAMRToMultiBlockFilter, vtkImageToAMR, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkCellCenters, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkCutter, vtkDataObjectToDataSetFilter, vtkExplicitStructuredGridToUnstructuredGrid, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskPoints, vtkMergeDataObjectFilter, vtkMergeFilter, vtkPassThrough, vtkPlaneCutter, vtkRectilinearSynchronizedTemplates, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkStructuredGridOutlineFilter, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkUnstructuredGridToExplicitStructuredGrid, vtkConvertSelection, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCells, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataSets, vtkExtractEdges, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractLevel, vtkExtractSelectedArraysOverTime, vtkExtractSelectedBlock, vtkExtractSelectedIds, vtkExtractSelectedPolyDataIds, vtkExtractSelectedRows, vtkExtractSelection, vtkExtractTemporalFieldData, vtkLagrangianParticleTracker, vtkParticleTracerBase, vtkTemporalStreamTracer, vtkVectorFieldTopology, vtkAnimateModes, vtkAppendLocationAttributes, vtkBlankStructuredGridWithImage, vtkBoxClipDataSet, vtkClipDataSet, vtkClipVolume, vtkCountFaces, vtkCountVertices, vtkDataSetTriangleFilter, vtkDateToNumeric, vtkDiscreteFlyingEdges2D, vtkDiscreteFlyingEdges3D, vtkDiscreteFlyingEdgesClipper2D, vtkEdgePoints, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectionBase, vtkGraphToPoints, vtkGroupDataSetsFilter, vtkHyperStreamline, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkLinkEdgels, vtkMarchingContourFilter, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, vtkMultiBlockMergeFilter, vtkMultiThreshold, vtkPassArrays, vtkPassSelectedArrays, vtkPolyDataStreamer, vtkQuadraturePointInterpolator, vtkQuadraturePointsGenerator, vtkQuadratureSchemeDictionaryGenerator, vtkRandomAttributeGenerator, vtkRectilinearGridToPointSet, vtkRecursiveDividingCubes, vtkReflectionFilter, vtkRotationFilter, vtkSampleImplicitFunctionFilter, vtkShrinkFilter, vtkSplitByCellScalarFilter, vtkSubPixelPositionEdgels, vtkTableBasedClipDataSet, vtkTableToPolyData, vtkTableToStructuredGrid, vtkTemporalPathLineFilter, vtkTemporalStatistics, vtkTessellatorFilter, vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkYoungsMaterialInterface, vtkGenericStreamTracer, vtkCompositeDataGeometryFilter, vtkDataSetGhostGenerator, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridPartitioner, vtkUnstructuredGridGeometryFilter, vtkAdaptiveDataSetSurfaceFilter, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkProjectedTerrainPath, vtkTemporalDataSetCache, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkComputeHistogram2DOutliers, vtkDijkstraImageGeodesicPath, vtkGeodesicPath, vtkHausdorffDistancePointSetFilter, vtkHyperTreeGridOutlineFilter, vtkImageDataOutlineFilter, vtkOutlineFilter, vtkOTDensityMap, vtkOTFilter, vtkAggregateDataSetFilter, vtkCutMaterial, vtkDistributedDataFilter, vtkExtractCTHPart, vtkPeriodicFilter, vtkPieceRequestFilter, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPProbeFilter, vtkPResampleFilter, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkExtractSubsetWithSeed, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkConnectedPointsFilter, vtkConvertToPointCloud, vtkDensifyPointCloudFilter, vtkEuclideanClusterExtraction, vtkExtractSurface, vtkHierarchicalBinningFilter, vtkMaskPointsFilter, vtkPCACurvatureEstimation, vtkPCANormalEstimation, vtkPointCloudFilter, vtkPointDensityFilter, vtkPointOccupancyFilter, vtkPointSmoothingFilter, vtkPoissonDiskSampler, vtkVoxelGrid, vtkProgrammableFilter, vtkPythonAlgorithm, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkGraphToPolyData, vtkOutlineCornerFilter, vtkBivariateLinearTableThreshold, vtkComputeQuartiles, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStreamingStatistics, vtkFiberSurface, vtkRasterReprojectionFilter, vtkImageChangeInformation, vtkImageProbeFilter, vtkImageReslice, vtkCheckerboardSplatter, vtkFastSplatter, vtkGaussianSplatter, vtkImageToPoints, vtkShepardMethod, vtkVoxelModeller, vtkImageLogic, vtkImageMathematics, vtkImageConnectivityFilter, vtkImageThresholdConnectivity, vtkImageAccumulate, vtkImageHistogram, vtkBoostBreadthFirstSearch, vtkBoostBreadthFirstSearchTree, vtkBoostKruskalMinimumSpanningTree, vtkBoostPrimMinimumSpanningTree, vtkAddMembershipArray, vtkCollapseGraph, vtkContinuousScatterplot, vtkDataObjectToTable, vtkEdgeCenters, vtkExpandSelectedGraph, vtkExtractSelectedGraph, vtkExtractSelectedTree, vtkGraphHierarchicalBundleEdges, vtkMergeGraphs, vtkRemoveHiddenData, vtkTableToGraph, vtkTransferAttributes, vtkTreeDifferenceFilter, vtkAssignCoordinates, vtkCirclePackToPolyData, vtkKCoreLayout, vtkTreeMapToPolyData, vtkTreeRingToPolyData, vtkArrayDataWriter, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkGeoJSONWriter, vtkBYUWriter, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesWriter, vtkOBJWriter, vtkSTLWriter, vtkDIMACSGraphWriter, vtkNewickTreeWriter, vtkPhyloXMLTreeWriter, vtkCompositeDataWriter, vtkDataObjectWriter, vtkDataSetWriter, vtkGenericDataObjectWriter, vtkGraphWriter, vtkPolyDataWriter, vtkRectilinearGridWriter, vtkStructuredGridWriter, vtkStructuredPointsWriter, vtkTableWriter, vtkTreeWriter, vtkUnstructuredGridWriter, vtkMINCImageWriter, vtkMNIObjectWriter, vtkMNITagPointWriter, vtkTableToMySQLWriter, vtkOpenVDBWriter, vtkEnSightWriter, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataSetWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPPolyDataWriter, vtkXMLPRectilinearGridWriter, vtkXMLPStructuredGridWriter, vtkXMLPTableWriter, vtkXMLPUnstructuredGridWriter, vtkPLYWriter, vtkTableToPostgreSQLWriter, vtkTableToDatabaseWriter, vtkTableToSQLiteWriter, vtkXdmfWriter, vtkXMLCompositeDataWriter, vtkXMLDataObjectWriter, vtkXMLDataSetWriter, vtkXMLHyperTreeGridWriter, vtkXMLImageDataWriter, vtkXMLMultiBlockDataWriter, vtkXMLPolyDataWriter, vtkXMLRectilinearGridWriter, vtkXMLStructuredGridWriter, vtkXMLTableWriter, vtkXMLUniformGridAMRWriter, vtkXMLUnstructuredGridWriter, vtkGraphAnnotationLayersFilter, vtkContextMapper2D, vtkAbstractVolumeMapper, vtkCompositePolyDataMapper, vtkDataSetMapper, vtkGlyph3DMapper, vtkGraphMapper, vtkGraphToGlyphs, vtkImageMapper3D, vtkSelectVisiblePoints, vtkDepthImageToPointCloud, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkCompositePolyDataMapper2, vtkOpenGLPointGaussianMapper, vtkGPUVolumeRayCastMapper, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkConvertSelectionDomain, vtkApplyColors, vtkApplyIcons, vtkParallelCoordinatesRepresentation, vtkRenderedHierarchyRepresentation, vtkRenderedTreeAreaRepresentation, vtkAreaContourSpectrumFilter, vtkPolyDataToReebGraphFilter, vtkVolumeContourSpectrumFilter, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkmCleanGrid, vtkmExternalFaces, vtkHyperTreeGridAlgorithm, vtkImageToStructuredPoints, vtkTrivialConsumer, vtkTrivialProducer, vtkMoleculeToPolyDataFilter, vtkProteinRibbonFilter, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkAssignAttribute, vtkBinnedDecimation, vtkDataSetToDataObjectFilter, vtkDelaunay3D, vtkGlyph3D, vtkImageAppend, vtkMoleculeAppend, vtkPolyDataEdgeConnectivityFilter, vtkQuadricClustering, vtkResampleToImage, vtkResampleWithDataSet, vtkStructuredGridAppend, vtkVoronoi2D, vtkEvenlySpacedStreamlines2D, vtkParallelVectors, vtkStreamTracer, vtkVortexCore, vtkAnnotationLink, vtkAppendPoints, vtkBooleanOperationPolyDataFilter, vtkIntersectionPolyDataFilter, vtkLoopBooleanPolyDataFilter, vtkMultiBlockFromTimeSeriesFilter, vtkRectilinearGridToTetrahedra, vtkRemovePolyData, vtkSpatialRepresentationFilter, vtkVertexGlyphFilter, vtkGenericClip, vtkGenericContourFilter, vtkGenericCutter, vtkGenericDataSetTessellator, vtkGenericGeometryFilter, vtkGenericGlyph3DFilter, vtkGenericOutlineFilter, vtkGenericProbeFilter, vtkExplicitStructuredGridSurfaceFilter, vtkImplicitModeller, vtkTemporalArrayOperatorFilter, vtkHyperTreeGridCellCenters, vtkImageDataToHyperTreeGrid, vtkCookieCutter, vtkFitToHeightMapFilter, vtkQuadRotationalExtrusionFilter, vtkSelectEnclosedPoints, vtkTrimmedExtrusionFilter, vtkVolumeOfRevolutionFilter, vtkIntegrateAttributes, vtkExtractEnclosedPoints, vtkSignedDistance, vtkUnsignedDistance, vtkProgrammableGlyphFilter, vtkImageAppendComponents, vtkImageBlend, vtkSurfaceReconstructionFilter, vtkImageStencil, vtkImageStencilToImage, vtkImageToImageStencil, vtkPolyDataToImageStencil, vtkAdjacencyMatrixToEdgeTable, vtkArrayToTable, vtkDotProductSimilarity, vtkSparseArrayToTable, vtkTableToArray, vtkTableToSparseArray, vtkFacetWriter, vtkAbstractHyperTreeGridMapper, vtkImageMapper, vtkLabeledContourMapper, vtkMapArrayValues, vtkPolyDataMapper, vtkPolyDataMapper2D, vtkLabeledDataMapper, vtkUnstructuredGridVolumeMapper, vtkVolumeMapper, and vtkImageToStructuredGrid.
|
protectedvirtual |
Fill the output port information objects for this algorithm.
This is invoked by the first call to GetOutputPortInformation for each port so subclasses can specify what they can handle.
Reimplemented in vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkExplicitStructuredGridAlgorithm, vtkGraphAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkImageAlgorithm, vtkMoleculeAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkNonOverlappingAMRAlgorithm, vtkOverlappingAMRAlgorithm, vtkPartitionedDataSetAlgorithm, vtkPartitionedDataSetCollectionAlgorithm, vtkPassInputTypeAlgorithm, vtkPiecewiseFunctionAlgorithm, vtkPointSetAlgorithm, vtkPolyDataAlgorithm, vtkRectilinearGridAlgorithm, vtkSelectionAlgorithm, vtkStructuredGridAlgorithm, vtkTableAlgorithm, vtkTreeAlgorithm, vtkUndirectedGraphAlgorithm, vtkUniformGridAMRAlgorithm, vtkUniformGridPartitioner, vtkUnstructuredGridAlgorithm, vtkUnstructuredGridBaseAlgorithm, vtkAMRCutPlane, vtkAMRResampleFilter, vtkAMRSliceFilter, vtkAMRToMultiBlockFilter, vtkPlaneCutter, vtkExtractDataSets, vtkExtractLevel, vtkLagrangianParticleTracker, vtkVectorFieldTopology, vtkCountFaces, vtkCountVertices, vtkPolyDataStreamer, vtkQuadraturePointInterpolator, vtkQuadratureSchemeDictionaryGenerator, vtkTemporalPathLineFilter, vtkDataSetGhostGenerator, vtkImageDataToUniformGrid, vtkRectilinearGridPartitioner, vtkStructuredGridPartitioner, vtkRenderLargeImage, vtkTransformToGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, vtkHyperTreeGridOutlineFilter, vtkLinearCellExtrusionFilter, vtkOTDensityMap, vtkPieceRequestFilter, vtkAdaptiveResampleToImage, vtkDistributedPointCloudFilter, vtkPythonAlgorithm, vtkSMPContourGrid, vtkRandomHyperTreeGridSource, vtkBivariateLinearTableThreshold, vtkStatisticsAlgorithm, vtkStreamingStatistics, vtkScalarsToTextureFilter, vtkRasterReprojectionFilter, vtkImageReslice, vtkImageToPoints, vtkImageHistogram, vtkBoostBetweennessClustering, vtkBoostBreadthFirstSearch, vtkBoostKruskalMinimumSpanningTree, vtkCollapseVerticesByArray, vtkContinuousScatterplot, vtkStringToCategory, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkCGNSReader, vtkVASPTessellationReader, vtkGenericEnSightReader, vtkFidesReader, vtkGDALRasterReader, vtkTecplotReader, vtkTulipReader, vtkIOSSReader, vtkOMFReader, vtkMultiBlockPLOT3DReader, vtkXdmfReader, vtkXdmf3Reader, vtkImageMapper3D, vtkRendererSource, vtkResizingWindowToImageFilter, vtkWindowToImageFilter, vtkDepthImageToPointCloud, vtkLabelHierarchyAlgorithm, vtkStructuredGridLIC2D, vtkConvertSelectionDomain, vtkAreaContourSpectrumFilter, vtkVolumeContourSpectrumFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphVolumeSkeletonFilter, vtkOpenQubeMoleculeSource, vtkmExternalFaces, vtkEnsembleSource, vtkHyperTreeGridAlgorithm, vtkImageToStructuredPoints, vtkTrivialConsumer, vtkTrivialProducer, vtkResampleToImage, vtkResampleWithDataSet, vtkAnnotationLink, vtkPolyDataToReebGraphFilter, vtkSphericalHarmonics, vtkTemporalArrayOperatorFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridGeometry, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkHyperTreeGridGhostCellsGenerator, vtkReebGraphSimplificationFilter, vtkReebGraphToJoinSplitTreeFilter, vtkUnstructuredGridToReebGraphFilter, vtkHyperTreeGridSource, vtkUniformHyperTreeGridSource, vtkImageStencilAlgorithm, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkWindBladeReader, vtkBiomTableReader, vtkMultiNewickTreeReader, vtkNewickTreeReader, vtkPhyloXMLTreeReader, vtkCompositeDataReader, vtkDataObjectReader, vtkDataSetReader, vtkGenericDataObjectReader, vtkGraphReader, vtkPolyDataReader, vtkRectilinearGridReader, vtkStructuredGridReader, vtkStructuredPointsReader, vtkTableReader, vtkTreeReader, vtkUnstructuredGridReader, vtkXMLGenericDataObjectReader, vtkXMLHyperTreeGridReader, vtkXMLImageDataReader, vtkXMLPHyperTreeGridReader, vtkXMLPImageDataReader, vtkXMLPolyDataReader, vtkXMLPPolyDataReader, vtkXMLPRectilinearGridReader, vtkXMLPStructuredGridReader, vtkXMLPTableReader, vtkXMLPUnstructuredGridReader, vtkXMLRectilinearGridReader, vtkXMLStructuredGridReader, vtkXMLTableReader, vtkXMLUnstructuredGridReader, vtkImageToStructuredGrid, vtkXMLCompositeDataReader, vtkXMLMultiBlockDataReader, vtkXMLPartitionedDataSetCollectionReader, and vtkXMLPartitionedDataSetReader.
|
protectedvirtual |
Set the number of input ports used by the algorithm.
Reimplemented in vtkPythonAlgorithm.
|
protectedvirtual |
Set the number of output ports provided by the algorithm.
Reimplemented in vtkPythonAlgorithm.
|
protected |
|
protected |
|
protected |
Get the assocition of the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass.
|
protected |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass.
|
protected |
Get the actual data array for the input array specified by idx, this is only reasonable during the REQUEST_DATA pass.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
Filters that have multiple connections on one port can use this signature.
This will override the connection id that the user set in SetInputArrayToProcess() with the connection id passed. This way, the user specifies one array to process and that information is used to obtain arrays for all the connection on the port with the appropriate connection id substituted.
|
protected |
This method takes in an index (as specified in SetInputArrayToProcess) and a pipeline information vector.
It then finds the information about input array idx and then uses that information to find the field information from the relevant field in the pifo vector (as done by vtkDataObject::GetActiveFieldInformation)
|
protectedvirtual |
Create a default executive.
If the DefaultExecutivePrototype is set, a copy of it is created in CreateDefaultExecutive() using NewInstance(). Otherwise, vtkStreamingDemandDrivenPipeline is created.
Reimplemented in vtkCompositeDataSetAlgorithm, vtkHierarchicalBoxDataSetAlgorithm, vtkMultiBlockDataSetAlgorithm, vtkTrivialProducer, vtkUniformGridAMRAlgorithm, vtkCompositeDataProbeFilter, vtkStreamTracer, vtkCompositeDataGeometryFilter, vtkIntegrateAttributes, vtkImageCacheFilter, vtkXdmfWriter, vtkXMLCompositeDataReader, vtkXMLCompositeDataWriter, vtkCompositePolyDataMapper, vtkCompositePolyDataMapper2, and vtkOpenGLPointGaussianMapper.
|
protectedvirtual |
The error code contains a possible error that occurred while reading or writing the file.
|
overrideprotectedvirtual |
Reimplemented from vtkObjectBase.
Reimplemented in vtkTrivialProducer, vtkContourFilter, vtkClipVolume, vtkInterpolateDataSetAttributes, vtkSampleImplicitFunctionFilter, vtkSpatialRepresentationFilter, vtkSelectEnclosedPoints, vtkExtractHierarchicalBins, vtkProgrammableAttributeDataFilter, vtkImageReslice, vtkImageStencilSource, vtkSampleFunction, vtkImageOpenClose3D, vtkDataSetMapper, vtkGraphMapper, vtkImageResliceMapper, vtkOpenGLPointGaussianMapper, and vtkProjectedTetrahedraMapper.
|
protectedvirtual |
Replace the Nth connection on the given input port.
For use only by this class and subclasses. If this is used to store a nullptr input then the subclass must be able to handle nullptr inputs in its ProcessRequest method.
|
protectedvirtual |
Set the number of input connections on the given input port.
For use only by this class and subclasses. If this is used to store a nullptr input then the subclass must be able to handle nullptr inputs in its ProcessRequest method.
|
inlineprotected |
These methods are used by subclasses to implement methods to set data objects directly as input.
Internally, they create a vtkTrivialProducer that has the data object as output and connect it to the algorithm.
Definition at line 946 of file vtkAlgorithm.h.
|
inlineprotected |
Definition at line 950 of file vtkAlgorithm.h.
vtkTypeBool vtkAlgorithm::AbortExecute |
Definition at line 337 of file vtkAlgorithm.h.
|
protected |
Definition at line 785 of file vtkAlgorithm.h.
|
protected |
The error code contains a possible error that occurred while reading or writing the file.
Definition at line 910 of file vtkAlgorithm.h.
|
protected |
Definition at line 914 of file vtkAlgorithm.h.
|
protected |
Definition at line 915 of file vtkAlgorithm.h.
|
staticprotected |
Definition at line 938 of file vtkAlgorithm.h.
|
protected |
Definition at line 955 of file vtkAlgorithm.h.