VTK
9.4.20241222
|
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. | |
vtkTypeBool | 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 | SetAbortExecuteAndUpdateTime () |
Set AbortExecute Flag and update LastAbortTime. | |
void | UpdateProgress (double amount) |
Update the progress of the process object. | |
bool | CheckAbort () |
Checks to see if this filter should abort. | |
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 VTK_UNBLOCKTHREADS int | UpdateExtent (const int extents[6]) |
Convenience method to update an algorithm after passing requests to its first output port. | |
virtual VTK_UNBLOCKTHREADS 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 VTK_UNBLOCKTHREADS 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 VTK_UNBLOCKTHREADS 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. | |
void | RemoveNoPriorTemporalAccessInformationKey () |
Removes any information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS() to all output ports of this vtkAlgorithm . | |
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. | |
bool | UsesGarbageCollector () const 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 | SetContainerAlgorithm (vtkAlgorithm *containerAlg) |
Set/get a Container algorithm for this algorithm. | |
vtkAlgorithm * | GetContainerAlgorithm () |
Set/get a Container algorithm for this algorithm. | |
virtual void | SetAbortOutput (bool) |
Set/Get an internal variable used to communicate between the algorithm and executive. | |
virtual bool | GetAbortOutput () |
Set/Get an internal variable used to communicate between the algorithm and executive. | |
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. | |
void | SetInputArrayToProcess (const char *name, int fieldAssociation) |
Set the input data arrays that this algorithm will process. | |
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 | SetInputArrayToProcess (int idx, int port, int connection, const char *fieldAssociation, const char *attributeTypeorName) |
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 VTK_UNBLOCKTHREADS void | Update (int port) |
Bring this algorithm's outputs up-to-date. | |
virtual VTK_UNBLOCKTHREADS void | Update () |
Bring this algorithm's outputs up-to-date. | |
virtual void | SetReleaseDataFlag (vtkTypeBool) |
Turn release data flag on or off for all output ports. | |
virtual vtkTypeBool | 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. | |
void | SetNoPriorTemporalAccessInformationKey (int key) |
Set to all output ports of this algorithm the information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS() . | |
void | SetNoPriorTemporalAccessInformationKey () |
Set to all output ports of this algorithm the information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS() . | |
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) |
vtkTypeBool | InvokeEvent (unsigned long event) |
vtkTypeBool | InvokeEvent (const char *event) |
std::string | GetObjectDescription () const override |
The object description printed in messages and PrintSelf output. | |
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. | |
vtkTypeBool | InvokeEvent (unsigned long event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
vtkTypeBool | InvokeEvent (const char *event, void *callData) |
This method invokes an event and return whether the event was aborted or not. | |
virtual void | SetObjectName (const std::string &objectName) |
Set/get the name of this object for reporting purposes. | |
virtual std::string | GetObjectName () const |
Set/get the name of this object for reporting purposes. | |
Public Member Functions inherited from vtkObjectBase | |
const char * | GetClassName () const |
Return the class name as a string. | |
virtual std::string | GetObjectDescription () const |
The object description printed in messages and PrintSelf output. | |
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. | |
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 vtkInformationIntegerKey * | ABORTED () |
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 (vtkTypeBool 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 vtkTypeBool | 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 | |
std::atomic< vtkTypeBool > | AbortExecute |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkAlgorithm () | |
~vtkAlgorithm () override | |
bool | CheckUpstreamAbort () |
Checks to see if an upstream filter has been aborted. | |
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 association 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 *) |
virtual void | ObjectFinalize () |
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 | |
vtkTimeStamp | LastAbortCheckTime |
vtkInformation * | Information |
double | Progress |
char * | ProgressText |
vtkProgressObserver * | ProgressObserver |
Protected Attributes inherited from vtkObject | |
bool | Debug |
vtkTimeStamp | MTime |
vtkSubjectHelper * | SubjectHelper |
std::string | ObjectName |
Protected Attributes inherited from vtkObjectBase | |
std::atomic< int32_t > | ReferenceCount |
vtkWeakPointerBase ** | WeakPointers |
Static Protected Attributes | |
static vtkTimeStamp | LastAbortTime |
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 161 of file vtkAlgorithm.h.
typedef vtkObject vtkAlgorithm::Superclass |
Definition at line 165 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 188 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, vtkmSlice, vtkmThreshold, vtkmTriangleMeshPointNormals, vtkmWarpScalar, vtkmWarpVector, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCellGridAlgorithm, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkEndFor, vtkEnsembleSource, vtkExplicitStructuredGridAlgorithm, vtkForEach, 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, vtkCellGridCellCenters, vtkCellGridCellSource, vtkCellGridComputeSides, vtkCellGridElevation, vtkCellGridPointProbe, vtkCellGridToUnstructuredGrid, vtkCellGridTransform, vtkCellGridWarp, vtkUnstructuredGridToCellGrid, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPartitionedDataSetCollection, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkArrayRename, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkAttributeDataToTableFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkConstrainedSmoothingFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkConvertToPolyhedra, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkExtractCells, vtkExtractCellsAlongPolyLine, vtkExtractEdges, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFieldDataToDataSetAttribute, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGenerateIds, vtkGenerateRegionIds, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkHyperTreeGridProbeFilter, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkOrientPolyData, vtkPackLabels, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataPlaneCutter, vtkPolyDataTangents, vtkPolyDataToUnstructuredGrid, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkSplitSharpEdgesPolyData, vtkStaticCleanPolyData, vtkStaticCleanUnstructuredGrid, vtkStreamerBase, vtkStripper, vtkStructuredDataPlaneCutter, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSurfaceNets2D, vtkSurfaceNets3D, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractParticlesOverTime, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedRows, vtkExtractSelection, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticlePathFilter, vtkParticleTracer, vtkParticleTracerBase, vtkStreaklineFilter, vtkStreamSurface, vtkStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkAxisAlignedReflectionFilter, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkCleanUnstructuredGrid, vtkCleanUnstructuredGridCells, 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, vtkExplodeDataSet, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkFiniteElementFieldDistributor, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkJoinTables, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, 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, vtkSpatioTemporalHarmonicsAttribute, 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, vtkAttributeSmoothingFilter, vtkCompositeDataGeometryFilter, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRecoverGeometryWireframe, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridPartitioner, vtkStructuredPointsGeometryFilter, vtkUnstructuredGridGeometryFilter, vtkOctreeImageToPointSetFilter, vtkPointSetStreamer, vtkPointSetToOctreeImageFilter, vtkAdaptiveDataSetSurfaceFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGenerateTimeSteps, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridExtractGhostCells, vtkHyperTreeGridFeatureEdges, vtkHyperTreeGridGeometry, vtkHyperTreeGridGradient, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridRemoveGhostCells, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkHyperTreeGridVisibleLeavesSize, 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, vtkAlignImageDataSetFilter, vtkAngularPeriodicFilter, vtkCleanArrays, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkGenerateProcessIds, vtkHyperTreeGridGenerateGlobalIds, vtkHyperTreeGridGenerateProcessIds, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkMergeBlocks, vtkPartitionBalancer, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPHyperTreeGridProbeFilter, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkAdaptiveResampleToImage, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkStitchImageDataWithGhosts, TestVectorFieldSource, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPConnectivityFilter, vtkPDistributedDataFilter, vtkExtractPiece, vtkMemoryLimitImageDataStreamer, vtkPComputeHistogram2DOutliers, vtkPExtractHistogram2D, vtkPPairwiseExtractHistogram2D, vtkTransmitImageDataPiece, vtkDistributedPointCloudFilter, vtkPExtractGrid, vtkPExtractRectilinearGrid, vtkPExtractVOI, vtkPAutoCorrelativeStatistics, vtkPBivariateLinearTableThreshold, vtkPComputeQuantiles, vtkPComputeQuartiles, 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, vtkProjectPointsToPlane, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkToImplicitArrayFilter, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGoldenBallSource, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridPreConfiguredSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSpatioTemporalHarmonicsSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuantiles, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkExtractHistogram, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkLengthDistribution, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkStaticDataSource, vtkStaticCompositeSource, vtkConsumerDataFilter, vtkCriticalTime, vtkForceStaticMesh, vtkTemporalSmoothing, vtkTensorPrincipalInvariants, vtkYieldCriteria, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkBoundaryMeshQuality, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToXYZ, vtkImageRGBToYIQ, vtkImageXYZToLAB, 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, vtkImageSSIM, 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, 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, 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, vtkConduitSource, vtkCellGridReader, vtkCellGridWriter, vtkCompositeCellGridReader, vtkCesium3DTilesReader, vtkCesium3DTilesWriter, vtkCesiumB3DMReader, vtkCesiumPointCloudWriter, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCONVERGECFDCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkAbstractParticleWriter, vtkAbstractPolyDataReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkBTSReader, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldCombinedReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkEnSightSOSGoldReader, vtkGenericEnSightReader, vtkERFReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFDSReader, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkFLUENTCFFReader, vtkGDALRasterReader, vtkGDALVectorReader, vtkGeoJSONReader, vtkGeoJSONWriter, vtkAVSucdReader, vtkBYUReader, vtkBYUWriter, vtkCGMWriter, vtkChacoReader, vtkFacetWriter, vtkFLUENTReader, vtkGAMBITReader, vtkGLTFReader, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesReader, vtkMCubesWriter, vtkMFIXReader, vtkOBJReader, vtkOBJWriter, vtkOFFReader, vtkOpenFOAMReader, vtkParticleReader, vtkProStarReader, vtkPTSReader, vtkSTLReader, vtkSTLWriter, vtkTecplotReader, vtkWindBladeReader, vtkH5PartReader, vtkH5RageReader, vtkHDFReader, vtkHDFWriter, 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, vtkIOSSCellGridReader, vtkIOSSReader, vtkIOSSWriter, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkLegacyCellGridReader, vtkLegacyCellGridWriter, 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, vtkNetCDFCFWriter, vtkNetCDFPOPReader, vtkNetCDFReader, vtkNetCDFUGRIDReader, vtkSLACParticleReader, vtkSLACReader, vtkOCCTReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkNek5000Reader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, 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, vtkAnariVolumeMapper, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkOpenGLCellGridMapper, vtkContextMapper2D, vtkAbstractHyperTreeGridMapper, vtkAbstractMapper, vtkAbstractMapper3D, vtkAbstractVolumeMapper, vtkCellGridMapper, vtkCompositeCellGridMapper, 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, vtkHyperTreeGridMapper, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkBatchedSurfaceLICMapper, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkArrayRenderer, vtkEquirectangularToCubeMapTexture, vtkOpenGLBatchedPolyDataMapper, vtkOpenGLES30PolyDataMapper2D, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLHyperTreeGridMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLLowMemoryBatchedPolyDataMapper, vtkOpenGLLowMemoryPolyDataMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPointGaussianMapperHelper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkAnariVolumeInterface, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkOpenGLSurfaceProbeVolumeMapper, vtkSmartVolumeMapper, vtkWebGPUBatchedPolyDataMapper, vtkWebGPUComputePointCloudMapper, vtkWebGPUPolyDataMapper, 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, vtkmSlice, vtkmThreshold, vtkmTriangleMeshPointNormals, vtkmWarpScalar, vtkmWarpVector, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCellGridAlgorithm, vtkCompositeDataSetAlgorithm, vtkDataObjectAlgorithm, vtkDataSetAlgorithm, vtkDirectedGraphAlgorithm, vtkEndFor, vtkEnsembleSource, vtkExplicitStructuredGridAlgorithm, vtkForEach, 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, vtkCellGridCellCenters, vtkCellGridCellSource, vtkCellGridComputeSides, vtkCellGridElevation, vtkCellGridPointProbe, vtkCellGridToUnstructuredGrid, vtkCellGridTransform, vtkCellGridWarp, vtkUnstructuredGridToCellGrid, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPartitionedDataSetCollection, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkArrayRename, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkAttributeDataToTableFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkConstrainedSmoothingFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkConvertToPolyhedra, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkExtractCells, vtkExtractCellsAlongPolyLine, vtkExtractEdges, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFieldDataToDataSetAttribute, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGenerateIds, vtkGenerateRegionIds, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkHyperTreeGridProbeFilter, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkOrientPolyData, vtkPackLabels, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataPlaneCutter, vtkPolyDataTangents, vtkPolyDataToUnstructuredGrid, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkSplitSharpEdgesPolyData, vtkStaticCleanPolyData, vtkStaticCleanUnstructuredGrid, vtkStreamerBase, vtkStripper, vtkStructuredDataPlaneCutter, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSurfaceNets2D, vtkSurfaceNets3D, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractParticlesOverTime, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedRows, vtkExtractSelection, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticlePathFilter, vtkParticleTracer, vtkParticleTracerBase, vtkStreaklineFilter, vtkStreamSurface, vtkStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkAxisAlignedReflectionFilter, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkCleanUnstructuredGrid, vtkCleanUnstructuredGridCells, 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, vtkExplodeDataSet, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkFiniteElementFieldDistributor, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkJoinTables, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, 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, vtkSpatioTemporalHarmonicsAttribute, 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, vtkAttributeSmoothingFilter, vtkCompositeDataGeometryFilter, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRecoverGeometryWireframe, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridPartitioner, vtkStructuredPointsGeometryFilter, vtkUnstructuredGridGeometryFilter, vtkOctreeImageToPointSetFilter, vtkPointSetStreamer, vtkPointSetToOctreeImageFilter, vtkAdaptiveDataSetSurfaceFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGenerateTimeSteps, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridExtractGhostCells, vtkHyperTreeGridFeatureEdges, vtkHyperTreeGridGeometry, vtkHyperTreeGridGradient, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridRemoveGhostCells, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkHyperTreeGridVisibleLeavesSize, 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, vtkAlignImageDataSetFilter, vtkAngularPeriodicFilter, vtkCleanArrays, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkGenerateProcessIds, vtkHyperTreeGridGenerateGlobalIds, vtkHyperTreeGridGenerateProcessIds, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkMergeBlocks, vtkPartitionBalancer, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPHyperTreeGridProbeFilter, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkAdaptiveResampleToImage, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkStitchImageDataWithGhosts, TestVectorFieldSource, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPConnectivityFilter, vtkPDistributedDataFilter, vtkExtractPiece, vtkMemoryLimitImageDataStreamer, vtkPComputeHistogram2DOutliers, vtkPExtractHistogram2D, vtkPPairwiseExtractHistogram2D, vtkTransmitImageDataPiece, vtkDistributedPointCloudFilter, vtkPExtractGrid, vtkPExtractRectilinearGrid, vtkPExtractVOI, vtkPAutoCorrelativeStatistics, vtkPBivariateLinearTableThreshold, vtkPComputeQuantiles, vtkPComputeQuartiles, 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, vtkProjectPointsToPlane, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkToImplicitArrayFilter, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGoldenBallSource, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridPreConfiguredSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSpatioTemporalHarmonicsSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuantiles, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkExtractHistogram, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkLengthDistribution, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkStaticDataSource, vtkStaticCompositeSource, vtkConsumerDataFilter, vtkCriticalTime, vtkForceStaticMesh, vtkTemporalSmoothing, vtkTensorPrincipalInvariants, vtkYieldCriteria, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkBoundaryMeshQuality, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToXYZ, vtkImageRGBToYIQ, vtkImageXYZToLAB, 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, vtkImageSSIM, 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, 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, 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, vtkConduitSource, vtkCellGridReader, vtkCellGridWriter, vtkCompositeCellGridReader, vtkCesium3DTilesReader, vtkCesium3DTilesWriter, vtkCesiumB3DMReader, vtkCesiumPointCloudWriter, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCONVERGECFDCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkAbstractParticleWriter, vtkAbstractPolyDataReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkBTSReader, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldCombinedReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkEnSightSOSGoldReader, vtkGenericEnSightReader, vtkERFReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFDSReader, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkFLUENTCFFReader, vtkGDALRasterReader, vtkGDALVectorReader, vtkGeoJSONReader, vtkGeoJSONWriter, vtkAVSucdReader, vtkBYUReader, vtkBYUWriter, vtkCGMWriter, vtkChacoReader, vtkFacetWriter, vtkFLUENTReader, vtkGAMBITReader, vtkGLTFReader, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesReader, vtkMCubesWriter, vtkMFIXReader, vtkOBJReader, vtkOBJWriter, vtkOFFReader, vtkOpenFOAMReader, vtkParticleReader, vtkProStarReader, vtkPTSReader, vtkSTLReader, vtkSTLWriter, vtkTecplotReader, vtkWindBladeReader, vtkH5PartReader, vtkH5RageReader, vtkHDFReader, vtkHDFWriter, 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, vtkIOSSCellGridReader, vtkIOSSReader, vtkIOSSWriter, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkLegacyCellGridReader, vtkLegacyCellGridWriter, 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, vtkNetCDFCFWriter, vtkNetCDFPOPReader, vtkNetCDFReader, vtkNetCDFUGRIDReader, vtkSLACParticleReader, vtkSLACReader, vtkOCCTReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkNek5000Reader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, 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, vtkAnariVolumeMapper, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkOpenGLCellGridMapper, vtkContextMapper2D, vtkAbstractHyperTreeGridMapper, vtkAbstractMapper, vtkAbstractMapper3D, vtkAbstractVolumeMapper, vtkCellGridMapper, vtkCompositeCellGridMapper, 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, vtkHyperTreeGridMapper, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkBatchedSurfaceLICMapper, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkArrayRenderer, vtkEquirectangularToCubeMapTexture, vtkOpenGLBatchedPolyDataMapper, vtkOpenGLES30PolyDataMapper2D, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLHyperTreeGridMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLLowMemoryBatchedPolyDataMapper, vtkOpenGLLowMemoryPolyDataMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPointGaussianMapperHelper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkAnariVolumeInterface, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkOpenGLSurfaceProbeVolumeMapper, vtkSmartVolumeMapper, vtkWebGPUBatchedPolyDataMapper, vtkWebGPUComputePointCloudMapper, vtkWebGPUPolyDataMapper, 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 vtkObjectBase.
Reimplemented in vtkOpenQubeMoleculeSource, vtkNonOverlappingAMRLevelIdScalars, vtkCGMWriter, vtkSQLDatabaseGraphSource, vtkSQLGraphReader, vtkmAverageToCells, vtkmAverageToPoints, vtkmCleanGrid, vtkmClip, vtkmContour, vtkmCoordinateSystemTransform, vtkmExternalFaces, vtkmExtractVOI, vtkmGradient, vtkmHistogram, vtkmImageConnectivity, vtkmLevelOfDetail, vtkmNDHistogram, vtkmPointElevation, vtkmPointTransform, vtkmPolyDataNormals, vtkmProbe, vtkmSlice, vtkmThreshold, vtkmTriangleMeshPointNormals, vtkmWarpScalar, vtkmWarpVector, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCastToConcrete, vtkCellGridAlgorithm, 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, vtkCellGridCellCenters, vtkCellGridCellSource, vtkCellGridComputeSides, vtkCellGridElevation, vtkCellGridPointProbe, vtkCellGridToUnstructuredGrid, vtkCellGridTransform, vtkCellGridWarp, vtkUnstructuredGridToCellGrid, vtkAppendArcLength, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPartitionedDataSetCollection, vtkAppendPolyData, vtkAppendSelection, vtkArrayCalculator, vtkArrayRename, vtkAssignAttribute, vtkAttributeDataToFieldDataFilter, vtkAttributeDataToTableFilter, vtkBinCellDataFilter, vtkBinnedDecimation, vtkCellCenters, vtkCellDataToPointData, vtkCenterOfMass, vtkCleanPolyData, vtkClipPolyData, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkConstrainedSmoothingFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkConvertToPolyhedra, vtkCutter, vtkDataObjectGenerator, vtkDataObjectToDataSetFilter, vtkDataSetToDataObjectFilter, vtkDecimatePolylineFilter, vtkDecimatePro, vtkDelaunay2D, vtkDelaunay3D, vtkElevationFilter, vtkExplicitStructuredGridCrop, vtkExplicitStructuredGridToUnstructuredGrid, vtkExtractCells, vtkExtractCellsAlongPolyLine, vtkExtractEdges, vtkFeatureEdges, vtkFieldDataToAttributeDataFilter, vtkFieldDataToDataSetAttribute, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGenerateIds, vtkGenerateRegionIds, vtkGlyph2D, vtkGlyph3D, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkHull, vtkHyperTreeGridProbeFilter, vtkIdFilter, vtkImageAppend, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskFields, vtkMaskPoints, vtkMaskPolyData, vtkMassProperties, vtkMergeDataObjectFilter, vtkMergeFields, vtkMergeFilter, vtkMoleculeAppend, vtkMultiObjectMassProperties, vtkOrientPolyData, vtkPackLabels, vtkPassThrough, vtkPlaneCutter, vtkPointDataToCellData, vtkPolyDataConnectivityFilter, vtkPolyDataEdgeConnectivityFilter, vtkPolyDataNormals, vtkPolyDataPlaneClipper, vtkPolyDataPlaneCutter, vtkPolyDataTangents, vtkPolyDataToUnstructuredGrid, vtkProbeFilter, vtkQuadricClustering, vtkQuadricDecimation, vtkRearrangeFields, vtkRectilinearSynchronizedTemplates, vtkRemoveDuplicatePolys, vtkRemoveUnusedPoints, vtkResampleToImage, vtkResampleWithDataSet, vtkReverseSense, vtkSimpleElevationFilter, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkSplitSharpEdgesPolyData, vtkStaticCleanPolyData, vtkStaticCleanUnstructuredGrid, vtkStreamerBase, vtkStripper, vtkStructuredDataPlaneCutter, vtkStructuredGridAppend, vtkStructuredGridOutlineFilter, vtkSurfaceNets2D, vtkSurfaceNets3D, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkSynchronizedTemplatesCutter3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkTransposeTable, vtkTriangleFilter, vtkTriangleMeshPointNormals, vtkTubeBender, vtkTubeFilter, vtkUnstructuredGridQuadricDecimation, vtkUnstructuredGridToExplicitStructuredGrid, vtkVectorDot, vtkVectorNorm, vtkVoronoi2D, vtkWindowedSincPolyDataFilter, vtkConvertSelection, vtkExpandMarkedElements, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataOverTime, vtkExtractDataSets, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractGrid, vtkExtractLevel, vtkExtractParticlesOverTime, vtkExtractPolyDataGeometry, vtkExtractRectilinearGrid, vtkExtractSelectedArraysOverTime, vtkExtractSelectedRows, vtkExtractSelection, vtkExtractTensorComponents, vtkExtractTimeSteps, vtkExtractUnstructuredGrid, vtkExtractVectorComponents, vtkHierarchicalDataExtractDataSets, vtkHierarchicalDataExtractLevel, vtkProbeSelectedLocations, vtkEvenlySpacedStreamlines2D, vtkLagrangianParticleTracker, vtkParallelVectors, vtkParticleTracer, vtkParticleTracerBase, vtkStreamSurface, vtkStreamTracer, vtkVectorFieldTopology, vtkVortexCore, vtkAnimateModes, vtkAnnotationLink, vtkAppendLocationAttributes, vtkAppendPoints, vtkApproximatingSubdivisionFilter, vtkAreaContourSpectrumFilter, vtkAxes, vtkAxisAlignedReflectionFilter, vtkBlankStructuredGrid, vtkBlankStructuredGridWithImage, vtkBlockIdScalars, vtkBooleanOperationPolyDataFilter, vtkBoxClipDataSet, vtkBrownianPoints, vtkCellDerivatives, vtkCellValidator, vtkCleanUnstructuredGrid, vtkCleanUnstructuredGridCells, 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, vtkExplodeDataSet, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectedFrustum, vtkExtractSelectionBase, vtkFiniteElementFieldDistributor, vtkGradientFilter, vtkGraphLayoutFilter, vtkGraphToPoints, vtkGraphWeightEuclideanDistanceFilter, vtkGraphWeightFilter, vtkGroupDataSetsFilter, vtkGroupTimeStepsFilter, vtkHierarchicalDataLevelFilter, vtkHyperStreamline, vtkIconGlyphFilter, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkInterpolatingSubdivisionFilter, vtkIntersectionPolyDataFilter, vtkJoinTables, vtkLevelIdScalars, vtkLinkEdgels, vtkLoopBooleanPolyDataFilter, vtkMarchingContourFilter, vtkMatricizeArray, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, 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, vtkSpatioTemporalHarmonicsAttribute, 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, vtkAttributeSmoothingFilter, vtkCompositeDataGeometryFilter, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkExplicitStructuredGridSurfaceFilter, vtkGeometryFilter, vtkHierarchicalDataSetGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkLinearToQuadraticCellsFilter, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRecoverGeometryWireframe, vtkRectilinearGridGeometryFilter, vtkStructuredGridGeometryFilter, vtkStructuredPointsGeometryFilter, vtkUnstructuredGridGeometryFilter, vtkOctreeImageToPointSetFilter, vtkPointSetStreamer, vtkPointSetToOctreeImageFilter, vtkDepthSortPolyData, vtkEarthSource, vtkFacetReader, vtkForceTime, vtkGenerateTimeSteps, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkImplicitModeller, vtkPCAAnalysisFilter, vtkPolyDataSilhouette, vtkProcrustesAlignmentFilter, vtkProjectedTerrainPath, vtkRenderLargeImage, vtkTemporalArrayOperatorFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkTransformToGrid, vtkWeightedTransformFilter, vtkHyperTreeGridAxisClip, vtkHyperTreeGridAxisCut, vtkHyperTreeGridAxisReflection, vtkHyperTreeGridCellCenters, vtkHyperTreeGridContour, vtkHyperTreeGridDepthLimiter, vtkHyperTreeGridEvaluateCoarse, vtkHyperTreeGridExtractGhostCells, vtkHyperTreeGridFeatureEdges, vtkHyperTreeGridGeometry, vtkHyperTreeGridGradient, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridRemoveGhostCells, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, 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, vtkAlignImageDataSetFilter, vtkAngularPeriodicFilter, vtkCleanArrays, vtkCollectGraph, vtkCollectPolyData, vtkCollectTable, vtkCutMaterial, vtkDistributedDataFilter, vtkDuplicatePolyData, vtkExtractCTHPart, vtkExtractPolyDataPiece, vtkExtractUnstructuredGridPiece, vtkExtractUserDefinedPiece, vtkGenerateProcessIds, vtkHyperTreeGridGenerateGlobalIds, vtkHyperTreeGridGenerateProcessIds, vtkHyperTreeGridGhostCellsGenerator, vtkIntegrateAttributes, vtkMergeBlocks, vtkPartitionBalancer, vtkPConvertToMultiBlockDataSet, vtkPeriodicFilter, vtkPExtractDataArraysOverTime, vtkPExtractExodusGlobalTemporalVariables, vtkPExtractSelectedArraysOverTime, vtkPHyperTreeGridProbeFilter, vtkPieceRequestFilter, vtkPieceScalars, vtkPLinearExtrusionFilter, vtkPMaskPoints, vtkPMergeArrays, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPPolyDataNormals, vtkPProbeFilter, vtkPProjectSphereFilter, vtkPReflectionFilter, vtkPResampleFilter, vtkPSphereSource, vtkPTextureMapToSphere, vtkPYoungsMaterialInterface, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkTransmitPolyDataPiece, vtkTransmitRectilinearGridPiece, vtkTransmitStructuredDataPiece, vtkTransmitStructuredGridPiece, vtkTransmitUnstructuredGridPiece, vtkDIYAggregateDataSetFilter, vtkExtractSubsetWithSeed, vtkGenerateGlobalIds, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkPResampleToImage, vtkPResampleWithDataSet, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkStitchImageDataWithGhosts, vtkPLagrangianParticleTracker, vtkPParticlePathFilter, vtkPParticleTracer, vtkPParticleTracerBase, vtkPStreaklineFilter, vtkPStreamTracer, vtkPConnectivityFilter, vtkPDistributedDataFilter, 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, vtkProjectPointsToPlane, vtkRadiusOutlierRemoval, vtkSignedDistance, vtkSPHInterpolator, vtkStatisticalOutlierRemoval, vtkUnsignedDistance, vtkVoxelGrid, vtkProgrammableAttributeDataFilter, vtkProgrammableFilter, vtkProgrammableGlyphFilter, vtkPythonAlgorithm, vtkReebGraphSimplificationFilter, vtkReebGraphSurfaceSkeletonFilter, vtkReebGraphToJoinSplitTreeFilter, vtkReebGraphVolumeSkeletonFilter, vtkUnstructuredGridToReebGraphFilter, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkSMPContourGrid, vtkArcSource, vtkArrowSource, vtkButtonSource, vtkCellTypeSource, vtkConeSource, vtkCubeSource, vtkCylinderSource, vtkDiagonalMatrixSource, vtkDiskSource, vtkEllipseArcSource, vtkEllipticalButtonSource, vtkFrustumSource, vtkGlyphSource2D, vtkGoldenBallSource, vtkGraphToPolyData, vtkHandleSource, vtkHyperTreeGridSource, vtkLineSource, vtkOutlineCornerFilter, vtkOutlineCornerSource, vtkOutlineSource, vtkParametricFunctionSource, vtkPartitionedDataSetCollectionSource, vtkPartitionedDataSetSource, vtkPlaneSource, vtkPlatonicSolidSource, vtkPointHandleSource, vtkPointSource, vtkPolyLineSource, vtkPolyPointSource, vtkProgrammableDataObjectSource, vtkProgrammableSource, vtkRandomHyperTreeGridSource, vtkRectangularButtonSource, vtkRegularPolygonSource, vtkSelectionSource, vtkSpatioTemporalHarmonicsSource, vtkSphereSource, vtkSuperquadricSource, vtkTessellatedBoxSource, vtkTextSource, vtkTexturedSphereSource, vtkUniformHyperTreeGridSource, vtkAutoCorrelativeStatistics, vtkBivariateLinearTableThreshold, vtkComputeQuantiles, vtkComputeQuartiles, vtkContingencyStatistics, vtkCorrelativeStatistics, vtkDescriptiveStatistics, vtkExtractFunctionalBagPlot, vtkExtractHistogram, vtkHighestDensityRegionsStatistics, vtkKMeansStatistics, vtkLengthDistribution, vtkMultiCorrelativeStatistics, vtkOrderStatistics, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStrahlerMetric, vtkStreamingStatistics, vtkCriticalTime, vtkForceStaticMesh, vtkTemporalSmoothing, vtkTensorPrincipalInvariants, vtkYieldCriteria, vtkImplicitTextureCoords, vtkScalarsToTextureFilter, vtkTextureMapToCylinder, vtkTextureMapToPlane, vtkTextureMapToSphere, vtkThresholdTextureCoords, vtkTransformTextureCoords, vtkTriangularTCoords, vtkFiberSurface, vtkBoundaryMeshQuality, vtkCellQuality, vtkCellSizeFilter, vtkMatrixMathFilter, vtkMeshQuality, vtkRasterReprojectionFilter, vtkImageHSIToRGB, vtkImageHSVToRGB, vtkImageLuminance, vtkImageMapToRGBA, vtkImageMapToWindowLevelColors, vtkImageQuantizeRGBToIndex, vtkImageRGBToHSI, vtkImageRGBToHSV, vtkImageRGBToXYZ, vtkImageRGBToYIQ, vtkImageXYZToLAB, 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, vtkImageSSIM, 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, 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, vtkArrayNorm, vtkArrayToTable, vtkCollapseGraph, vtkCollapseVerticesByArray, vtkContinuousScatterplot, 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, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkAMREnzoParticlesReader, vtkAMREnzoReader, vtkAMReXGridReader, vtkAMReXParticlesReader, vtkAMRFlashParticlesReader, vtkAMRFlashReader, vtkAMRVelodyneReader, vtkConduitSource, vtkCellGridReader, vtkCellGridWriter, vtkCompositeCellGridReader, vtkCesium3DTilesReader, vtkCesium3DTilesWriter, vtkCesiumB3DMReader, vtkCesiumPointCloudWriter, vtkCGNSFileSeriesReader, vtkCGNSReader, vtkCONVERGECFDCGNSReader, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkPDBReader, vtkVASPAnimationReader, vtkVASPTessellationReader, vtkXYZMolReader, vtkXYZMolReader2, vtkCityGMLReader, vtkCONVERGECFDReader, vtkArrayDataReader, vtkArrayDataWriter, vtkArrayReader, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkWriter, vtkBTSReader, vtkEnSight6BinaryReader, vtkEnSight6Reader, vtkEnSightGoldBinaryReader, vtkEnSightGoldCombinedReader, vtkEnSightGoldReader, vtkEnSightMasterServerReader, vtkEnSightReader, vtkEnSightSOSGoldReader, vtkGenericEnSightReader, vtkERFReader, vtkCPExodusIIInSituReader, vtkExodusIIReader, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkFDSReader, vtkFFMPEGVideoSource, vtkFFMPEGWriter, vtkFidesReader, vtkFLUENTCFFReader, 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, vtkHDFWriter, 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, vtkIOSSCellGridReader, vtkIOSSReader, vtkIOSSWriter, vtkLASReader, vtkCompositeDataReader, vtkCompositeDataWriter, vtkDataObjectReader, vtkDataObjectWriter, vtkDataReader, vtkDataSetReader, vtkDataSetWriter, vtkDataWriter, vtkGenericDataObjectReader, vtkGenericDataObjectWriter, vtkGraphReader, vtkGraphWriter, vtkLegacyCellGridReader, vtkLegacyCellGridWriter, 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, vtkNetCDFCFWriter, vtkNetCDFPOPReader, vtkNetCDFReader, vtkNetCDFUGRIDReader, vtkSLACParticleReader, vtkSLACReader, vtkOCCTReader, vtkOggTheoraWriter, vtkOMFReader, vtkOpenVDBReader, vtkOpenVDBWriter, vtkEnSightWriter, vtkMultiBlockPLOT3DReader, vtkNek5000Reader, vtkPChacoReader, vtkPDataSetReader, vtkPDataSetWriter, vtkPImageWriter, vtkPlot3DMetaReader, vtkPOpenFOAMReader, vtkPExodusIIReader, vtkPExodusIIWriter, vtkPLSDynaReader, vtkPNetCDFPOPReader, vtkPSLACReader, vtkPXdmf3Writer, vtkXMLDataWriterHelper, vtkXMLPartitionedDataSetCollectionWriter, vtkXMLPartitionedDataSetWriter, vtkXMLPDataObjectWriter, vtkXMLPDataSetWriter, vtkXMLPDataWriter, vtkXMLPHierarchicalBoxDataWriter, vtkXMLPHyperTreeGridWriter, vtkXMLPImageDataWriter, vtkXMLPMultiBlockDataWriter, 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, vtkAnariVolumeMapper, vtkArcPlotter, vtkConvexHull2D, vtkGraphAnnotationLayersFilter, vtkOpenGLCellGridMapper, vtkContextMapper2D, vtkCellGridMapper, vtkCompositeCellGridMapper, 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, vtkHyperTreeGridMapper, vtkDepthImageToPointCloud, vtkImageResliceMapper, vtkDynamic2DLabelMapper, vtkLabeledDataMapper, vtkLabeledTreeMapDataMapper, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkBatchedSurfaceLICMapper, vtkCompositeSurfaceLICMapper, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkSurfaceLICMapper, vtkArrayRenderer, vtkEquirectangularToCubeMapTexture, vtkOpenGLBatchedPolyDataMapper, vtkOpenGLES30PolyDataMapper2D, vtkOpenGLFluidMapper, vtkOpenGLGlyph3DHelper, vtkOpenGLGlyph3DMapper, vtkOpenGLHyperTreeGridMapper, vtkOpenGLImageMapper, vtkOpenGLImageSliceMapper, vtkOpenGLLabeledContourMapper, vtkOpenGLLowMemoryBatchedPolyDataMapper, vtkOpenGLLowMemoryPolyDataMapper, vtkOpenGLPointGaussianMapper, vtkOpenGLPointGaussianMapperHelper, vtkOpenGLPolyDataMapper, vtkOpenGLPolyDataMapper2D, vtkOpenGLSphereMapper, vtkOpenGLStickMapper, vtkOpenGLTextMapper, vtkOpenGLTexture, vtkPBRIrradianceTexture, vtkPBRLUTTexture, vtkPBRPrefilterTexture, vtkQImageToImageSource, vtkQtTreeRingLabelMapper, vtkOSPRayVolumeMapper, vtkAnariVolumeInterface, vtkFixedPointVolumeRayCastMapper, vtkGPUVolumeRayCastMapper, vtkOSPRayVolumeInterface, vtkProjectedTetrahedraMapper, vtkUnstructuredGridVolumeMapper, vtkUnstructuredGridVolumeRayCastMapper, vtkUnstructuredGridVolumeZSweepMapper, vtkVolumeMapper, vtkVolumeOutlineSource, vtkVolumeRayCastSpaceLeapingImageFilter, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLGPUVolumeRayCastMapper, vtkOpenGLProjectedTetrahedraMapper, vtkSmartVolumeMapper, vtkWebGPUBatchedPolyDataMapper, vtkWebGPUComputePointCloudMapper, vtkWebGPUPolyDataMapper, vtkConvertSelectionDomain, vtkDataRepresentation, vtkEmptyRepresentation, vtkApplyColors, vtkApplyIcons, vtkParallelCoordinatesHistogramRepresentation, vtkParallelCoordinatesRepresentation, vtkRenderedGraphRepresentation, vtkRenderedHierarchyRepresentation, vtkRenderedRepresentation, vtkRenderedSurfaceRepresentation, vtkRenderedTreeAreaRepresentation, vtkQtTableRepresentation, vtkImageToStructuredGrid, vtkUniformGridPartitioner, vtkAMRCutPlane, vtkAMRResampleFilter, vtkAMRToMultiBlockFilter, vtkRectilinearGridPartitioner, vtkStructuredGridPartitioner, and vtkHyperTreeGridVisibleLeavesSize.
vtkTypeBool 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, vtkCellGridAlgorithm, 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, vtkPassArrays, vtkCompositeDataGeometryFilter, vtkTemporalDataSetCache, vtkTemporalFractal, vtkTemporalShiftScale, vtkTemporalSnapToTimeStep, vtkHyperTreeGridCellCenters, vtkPieceRequestFilter, vtkGenerateIndexArray, vtkStringToCategory, vtkStringToNumeric, vtkWriter, vtkCPExodusIIInSituReader, vtkExodusIIWriter, vtkHDFWriter, vtkIOSSWriter, 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.
|
inlineoverridevirtual |
Participate in garbage collection.
Reimplemented from vtkObjectBase.
Definition at line 302 of file vtkAlgorithm.h.
void vtkAlgorithm::SetAbortExecuteAndUpdateTime | ( | ) |
Set AbortExecute Flag and update LastAbortTime.
|
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::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).
bool vtkAlgorithm::CheckAbort | ( | ) |
Checks to see if this filter should abort.
|
inline |
Set/get a Container algorithm for this algorithm.
Allows this algorithm to check to abort status of its Container algorithm as well as have access to its Container's information.
Definition at line 345 of file vtkAlgorithm.h.
|
inline |
Set/get a Container algorithm for this algorithm.
Allows this algorithm to check to abort status of its Container algorithm as well as have access to its Container's information.
Definition at line 349 of file vtkAlgorithm.h.
|
virtual |
Set/Get an internal variable used to communicate between the algorithm and executive.
If the executive sees this value is set, it will initialize the output data and pass the ABORTED flag downstream.
CheckAbort sets this value to true if the function returns true.
|
virtual |
Set/Get an internal variable used to communicate between the algorithm and executive.
If the executive sees this value is set, it will initialize the output data and pass the ABORTED flag downstream.
CheckAbort sets this value to true if the function returns true.
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.
void vtkAlgorithm::SetInputArrayToProcess | ( | const char * | name, |
int | fieldAssociation | ||
) |
Set the input data arrays that this algorithm will process.
Default to SetInputArrayToProcess(0, 0, 0, fieldAssociation, name)
name | the name of the array to process |
fieldAssociation | the field in the data object where the array is stored. See vtkDataObject::FieldAssociations for detail. |
|
virtual |
Set the input data arrays that this algorithm will process.
Array is expected to be in the input data object specified by (port, connection), and is stored under the given fieldAssociation with given name Internally, this algorithm references it at idx position.
Full signature with array name.
idx | the intern index of the array, in vtkAlgorithm scope. Useful for algorithm expecting different arrays to work. |
port | the algorithm input port of the data object where to look for the requested array. See GetInputDataObject |
connection | the algorithm input connection of the data object where to look for the requested array. See GetInputDataObject |
fieldAssociation | the field in the data object where the array is stored. See vtkDataObject::FieldAssociations for detail. |
name | the name of the array to process |
Reimplemented in vtkCompositePolyDataMapper, and vtkCompositePolyDataMapper.
|
virtual |
Set the input data arrays that this algorithm will process.
Full signature with attribute type.
idx | the intern index of the array, in vtkAlgorithm scope. Useful for algorithm expecting different arrays to work. |
port | the algorithm input port of the data object where to look for the requested array. See GetInputDataObject |
connection | the algorithm input connection of the data object where to look for the requested array. See GetInputDataObject |
fieldAssociation | the field in the data object where the array is stored. See vtkDataObject::FieldAssociations for detail. |
fieldAttributeType | the attribute type related to the array to use. See vtkDataSetAttributes::AttributeTypes for possible values. |
Reimplemented in vtkCompositePolyDataMapper, and vtkCompositePolyDataMapper.
|
virtual |
Set the input data arrays that this algorithm will process.
Alternative variant that copy information into relevant InputArrayInformation. See GetInputArrayInformation
Reimplemented in vtkCompositePolyDataMapper, and vtkCompositePolyDataMapper.
|
virtual |
Set the input data arrays that this algorithm will process.
String based version 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:
Attribute type is one of the following:
If the last argument is not an attribute type, it is assumed to be an array name.
Reimplemented in vtkCompositePolyDataMapper.
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 vtkImageMathematics, 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 vtkImageMathematics, 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.
Reimplemented in vtkHyperTreeGridMapper.
|
inlinevirtual |
Reimplemented in vtkHyperTreeGridMapper.
Definition at line 636 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 644 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 653 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 684 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 695 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 710 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 vtkCellGridMapper, vtkPolyDataMapper, and vtkImageResliceMapper.
|
virtual |
Bring this algorithm's outputs up-to-date.
Reimplemented in vtkCellGridMapper, 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 vtkCellGridMapper, 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 vtkCellGridMapper, 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 858 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 860 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 865 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 875 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 877 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 879 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.
void vtkAlgorithm::SetNoPriorTemporalAccessInformationKey | ( | int | key | ) |
Set to all output ports of this algorithm the information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS()
.
This should be set on sources of pipelines for which all timesteps are not necessarily all available at once. This is typically the case for visualization in situ.
vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS_RESET
. vtkStreamingDemandDrivenPipeline
will set it to ‘NO_PRIOR_TEMPORAL_ACCESS_CONTINUE’ after execution of the first time step. void vtkAlgorithm::SetNoPriorTemporalAccessInformationKey | ( | ) |
Set to all output ports of this algorithm the information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS()
.
This should be set on sources of pipelines for which all timesteps are not necessarily all available at once. This is typically the case for visualization in situ.
vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS_RESET
. vtkStreamingDemandDrivenPipeline
will set it to ‘NO_PRIOR_TEMPORAL_ACCESS_CONTINUE’ after execution of the first time step. void vtkAlgorithm::RemoveNoPriorTemporalAccessInformationKey | ( | ) |
Removes any information key vtkStreamingDemandDrivenPipeline::NO_PRIOR_TEMPORAL_ACCESS()
to all output ports of this vtkAlgorithm
.
|
staticprotected |
|
protected |
Checks to see if an upstream filter has been aborted.
If an abort has occurred, return true.
|
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, vtkmCoordinateSystemTransform, vtkmHistogram, vtkmNDHistogram, vtkmPointTransform, vtkAnnotationLayersAlgorithm, vtkArrayDataAlgorithm, vtkCellGridAlgorithm, 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, vtkCellGridPointProbe, vtkCellGridToUnstructuredGrid, vtkUnstructuredGridToCellGrid, vtk3DLinearGridCrinkleExtractor, vtk3DLinearGridPlaneCutter, vtkAppendCompositeDataLeaves, vtkAppendDataSets, vtkAppendFilter, vtkAppendPartitionedDataSetCollection, vtkArrayRename, vtkAttributeDataToTableFilter, vtkCellCenters, vtkCompositeCutter, vtkCompositeDataProbeFilter, vtkConnectivityFilter, vtkContour3DLinearGrid, vtkContourFilter, vtkContourGrid, vtkConvertToMultiBlockDataSet, vtkConvertToPartitionedDataSetCollection, vtkCutter, vtkDataObjectToDataSetFilter, vtkExplicitStructuredGridToUnstructuredGrid, vtkExtractCells, vtkExtractCellsAlongPolyLine, vtkExtractEdges, vtkFieldDataToDataSetAttribute, vtkFlyingEdges2D, vtkFlyingEdges3D, vtkFlyingEdgesPlaneCutter, vtkGenerateIds, vtkGridSynchronizedTemplates3D, vtkHedgeHog, vtkImageDataToExplicitStructuredGrid, vtkMarchingCubes, vtkMarchingSquares, vtkMaskPoints, vtkMergeDataObjectFilter, vtkMergeFilter, vtkPassThrough, vtkPlaneCutter, vtkPolyDataToUnstructuredGrid, vtkRectilinearSynchronizedTemplates, vtkSmoothPolyDataFilter, vtkSphereTreeFilter, vtkStructuredGridOutlineFilter, vtkSurfaceNets2D, vtkSurfaceNets3D, vtkSynchronizedTemplates2D, vtkSynchronizedTemplates3D, vtkTensorGlyph, vtkThreshold, vtkThresholdPoints, vtkUnstructuredGridToExplicitStructuredGrid, vtkConvertSelection, vtkExtractBlock, vtkExtractBlockUsingDataAssembly, vtkExtractCellsByType, vtkExtractDataArraysOverTime, vtkExtractDataSets, vtkExtractExodusGlobalTemporalVariables, vtkExtractGeometry, vtkExtractLevel, vtkExtractSelectedArraysOverTime, vtkExtractSelectedRows, vtkExtractSelection, vtkLagrangianParticleTracker, vtkParticleTracerBase, vtkVectorFieldTopology, vtkAnimateModes, vtkAppendLocationAttributes, vtkAxisAlignedReflectionFilter, vtkBlankStructuredGridWithImage, vtkBoxClipDataSet, vtkCleanUnstructuredGrid, vtkCleanUnstructuredGridCells, vtkClipDataSet, vtkClipVolume, vtkCountFaces, vtkCountVertices, vtkDataSetTriangleFilter, vtkDateToNumeric, vtkDiscreteFlyingEdges2D, vtkDiscreteFlyingEdges3D, vtkDiscreteFlyingEdgesClipper2D, vtkEdgePoints, vtkExplodeDataSet, vtkExtractArray, vtkExtractGhostCells, vtkExtractSelectionBase, vtkGraphToPoints, vtkGroupDataSetsFilter, vtkHyperStreamline, vtkImageDataToPointSet, vtkImageMarchingCubes, vtkInterpolateDataSetAttributes, vtkLinkEdgels, vtkMarchingContourFilter, vtkMergeArrays, vtkMergeTimeFilter, vtkMergeVectorComponents, vtkMultiBlockDataGroupFilter, vtkMultiBlockMergeFilter, vtkMultiThreshold, vtkPassArrays, vtkPassSelectedArrays, vtkPolyDataStreamer, vtkRandomAttributeGenerator, vtkRectilinearGridToPointSet, vtkRecursiveDividingCubes, vtkReflectionFilter, vtkRotationFilter, vtkSampleImplicitFunctionFilter, vtkShrinkFilter, vtkSplitByCellScalarFilter, vtkSubPixelPositionEdgels, vtkTableBasedClipDataSet, vtkTableToPolyData, vtkTableToStructuredGrid, vtkTemporalPathLineFilter, vtkTemporalStatistics, vtkTessellatorFilter, vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkYoungsMaterialInterface, vtkGenericStreamTracer, vtkCompositeDataGeometryFilter, vtkDataSetRegionSurfaceFilter, vtkDataSetSurfaceFilter, vtkGeometryFilter, vtkImageDataGeometryFilter, vtkImageDataToUniformGrid, vtkMarkBoundaryFilter, vtkProjectSphereFilter, vtkRectilinearGridGeometryFilter, vtkRectilinearGridPartitioner, vtkStructuredGridGeometryFilter, vtkStructuredGridPartitioner, vtkUnstructuredGridGeometryFilter, vtkOctreeImageToPointSetFilter, vtkPointSetStreamer, vtkPointSetToOctreeImageFilter, vtkAdaptiveDataSetSurfaceFilter, vtkGreedyTerrainDecimation, vtkImageToPolyDataFilter, vtkProjectedTerrainPath, vtkTemporalDataSetCache, vtkTemporalInterpolator, vtkTemporalShiftScale, vtkComputeHistogram2DOutliers, vtkDijkstraImageGeodesicPath, vtkGeodesicPath, vtkHausdorffDistancePointSetFilter, vtkHyperTreeGridOutlineFilter, vtkImageDataOutlineFilter, vtkOutlineFilter, vtkOTDensityMap, vtkOTFilter, vtkAggregateDataSetFilter, vtkAlignImageDataSetFilter, vtkCutMaterial, vtkDistributedDataFilter, vtkExtractCTHPart, vtkHyperTreeGridGenerateGlobalIds, vtkHyperTreeGridGenerateProcessIds, vtkMergeBlocks, vtkPeriodicFilter, vtkPieceRequestFilter, vtkPOutlineCornerFilter, vtkPOutlineFilter, vtkPProbeFilter, vtkPResampleFilter, vtkRectilinearGridOutlineFilter, vtkRemoveGhosts, vtkExtractSubsetWithSeed, vtkGhostCellsGenerator, vtkOverlappingCellsDetector, vtkProbeLineFilter, vtkRedistributeDataSetFilter, vtkStitchImageDataWithGhosts, vtkConnectedPointsFilter, vtkConvertToPointCloud, vtkDensifyPointCloudFilter, vtkEuclideanClusterExtraction, vtkExtractSurface, vtkHierarchicalBinningFilter, vtkMaskPointsFilter, vtkPCACurvatureEstimation, vtkPCANormalEstimation, vtkPointCloudFilter, vtkPointDensityFilter, vtkPointOccupancyFilter, vtkPointSmoothingFilter, vtkPoissonDiskSampler, vtkVoxelGrid, vtkProgrammableFilter, vtkPythonAlgorithm, vtkCellDistanceSelector, vtkKdTreeSelector, vtkLinearSelector, vtkGraphToPolyData, vtkOutlineCornerFilter, vtkBivariateLinearTableThreshold, vtkComputeQuantiles, vtkExtractHistogram, vtkLengthDistribution, vtkPCAStatistics, vtkStatisticsAlgorithm, vtkStreamingStatistics, vtkCriticalTime, vtkForceStaticMesh, vtkFiberSurface, vtkBoundaryMeshQuality, vtkRasterReprojectionFilter, vtkImageChangeInformation, vtkImageProbeFilter, vtkImageReslice, vtkCheckerboardSplatter, vtkFastSplatter, vtkGaussianSplatter, vtkImageToPoints, vtkShepardMethod, vtkVoxelModeller, vtkImageLogic, vtkImageMathematics, vtkImageConnectivityFilter, vtkImageThresholdConnectivity, vtkImageAccumulate, vtkImageHistogram, vtkBoostBreadthFirstSearch, vtkBoostBreadthFirstSearchTree, vtkBoostKruskalMinimumSpanningTree, vtkBoostPrimMinimumSpanningTree, vtkAddMembershipArray, vtkCollapseGraph, vtkContinuousScatterplot, vtkEdgeCenters, vtkExpandSelectedGraph, vtkExtractSelectedGraph, vtkExtractSelectedTree, vtkGraphHierarchicalBundleEdges, vtkMergeGraphs, vtkRemoveHiddenData, vtkTableToGraph, vtkTransferAttributes, vtkTreeDifferenceFilter, vtkAssignCoordinates, vtkCirclePackToPolyData, vtkKCoreLayout, vtkTreeMapToPolyData, vtkTreeRingToPolyData, vtkCellGridWriter, vtkCesium3DTilesWriter, vtkCesiumPointCloudWriter, vtkArrayDataWriter, vtkArrayWriter, vtkDelimitedTextWriter, vtkJavaScriptDataWriter, vtkExodusIIWriter, vtkJSONDataSetWriter, vtkGeoJSONWriter, vtkBYUWriter, vtkGLTFWriter, vtkHoudiniPolyDataWriter, vtkIVWriter, vtkMCubesWriter, vtkOBJWriter, vtkSTLWriter, vtkHDFWriter, vtkDIMACSGraphWriter, vtkNewickTreeWriter, vtkPhyloXMLTreeWriter, vtkIOSSWriter, vtkCompositeDataWriter, vtkDataObjectWriter, vtkDataSetWriter, vtkGenericDataObjectWriter, vtkGraphWriter, vtkLegacyCellGridWriter, vtkPolyDataWriter, vtkRectilinearGridWriter, vtkStructuredGridWriter, vtkStructuredPointsWriter, vtkTableWriter, vtkTreeWriter, vtkUnstructuredGridWriter, vtkMINCImageWriter, vtkMNIObjectWriter, vtkMNITagPointWriter, vtkTableToMySQLWriter, vtkNetCDFCFWriter, 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, vtkCompositeCellGridMapper, vtkCompositePolyDataMapper, vtkDataSetMapper, vtkGlyph3DMapper, vtkGraphMapper, vtkGraphToGlyphs, vtkImageMapper3D, vtkSelectVisiblePoints, vtkHyperTreeGridMapper, vtkDepthImageToPointCloud, vtkLabelHierarchyAlgorithm, vtkLabelPlacementMapper, vtkLabelPlacer, vtkLabelSizeCalculator, vtkPointSetToLabelHierarchy, vtkImageDataLIC2D, vtkStructuredGridLIC2D, vtkArrayRenderer, vtkOpenGLPointGaussianMapper, vtkGPUVolumeRayCastMapper, vtkAMRVolumeMapper, vtkMultiBlockUnstructuredGridVolumeMapper, vtkMultiBlockVolumeMapper, vtkOpenGLSurfaceProbeVolumeMapper, 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, vtkHyperTreeGridProbeFilter, vtkImageAppend, vtkMoleculeAppend, vtkPolyDataEdgeConnectivityFilter, vtkQuadricClustering, vtkResampleToImage, vtkResampleWithDataSet, vtkStructuredGridAppend, vtkVoronoi2D, vtkEvenlySpacedStreamlines2D, vtkParallelVectors, vtkStreamTracer, vtkVortexCore, vtkAnnotationLink, vtkAppendPoints, vtkBooleanOperationPolyDataFilter, vtkIntersectionPolyDataFilter, vtkJoinTables, vtkLoopBooleanPolyDataFilter, 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, vtkCellGridMapper, vtkImageMapper, vtkLabeledContourMapper, vtkMapArrayValues, vtkPolyDataMapper, vtkPolyDataMapper2D, vtkLabeledDataMapper, vtkUnstructuredGridVolumeMapper, vtkVolumeMapper, vtkImageToStructuredGrid, and vtkStructuredDataPlaneCutter.
|
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, vtkCellGridAlgorithm, 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, vtkHull, vtkPlaneCutter, vtkExtractDataSets, vtkExtractLevel, vtkLagrangianParticleTracker, vtkVectorFieldTopology, vtkCountFaces, vtkCountVertices, vtkPolyDataStreamer, vtkQuadraturePointsGenerator, vtkTemporalPathLineFilter, vtkImageDataToUniformGrid, vtkRectilinearGridPartitioner, vtkStructuredGridPartitioner, vtkRenderLargeImage, vtkTransformToGrid, vtkComputeHistogram2DOutliers, vtkExtractHistogram2D, vtkPairwiseExtractHistogram2D, vtkHyperTreeGridOutlineFilter, vtkLinearCellExtrusionFilter, vtkOTDensityMap, vtkHyperTreeGridGenerateProcessIds, vtkPieceRequestFilter, vtkAdaptiveResampleToImage, vtkDistributedPointCloudFilter, vtkPythonAlgorithm, vtkSMPContourGrid, vtkRandomHyperTreeGridSource, vtkBivariateLinearTableThreshold, vtkStatisticsAlgorithm, vtkStreamingStatistics, vtkScalarsToTextureFilter, vtkRasterReprojectionFilter, vtkImageReslice, vtkImageToPoints, vtkImageHistogram, vtkBoostBetweennessClustering, vtkBoostBreadthFirstSearch, vtkBoostKruskalMinimumSpanningTree, vtkCollapseVerticesByArray, vtkContinuousScatterplot, vtkStringToCategory, vtkAMRBaseParticlesReader, vtkAMRBaseReader, vtkCompositeCellGridReader, 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, vtkHyperTreeGridFeatureEdges, vtkHyperTreeGridGeometry, vtkHyperTreeGridPlaneCutter, vtkHyperTreeGridThreshold, vtkHyperTreeGridToDualGrid, vtkHyperTreeGridToUnstructuredGrid, vtkImageDataToHyperTreeGrid, vtkHyperTreeGridGhostCellsGenerator, vtkReebGraphSimplificationFilter, vtkReebGraphToJoinSplitTreeFilter, vtkUnstructuredGridToReebGraphFilter, vtkHyperTreeGridPreConfiguredSource, vtkHyperTreeGridSource, vtkUniformHyperTreeGridSource, vtkImageStencilAlgorithm, vtkCMLMoleculeReader, vtkGaussianCubeReader, vtkGaussianCubeReader2, vtkMoleculeReaderBase, vtkWindBladeReader, vtkBiomTableReader, vtkMultiNewickTreeReader, vtkNewickTreeReader, vtkPhyloXMLTreeReader, vtkCompositeDataReader, vtkDataObjectReader, vtkDataSetReader, vtkGenericDataObjectReader, vtkGraphReader, vtkLegacyCellGridReader, 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 association 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, vtkCompositeCellGridMapper, vtkCompositePolyDataMapper, 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, vtkCutter, vtkPlaneCutter, vtkResampleWithDataSet, vtkSphereTreeFilter, vtkStructuredDataPlaneCutter, 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 1101 of file vtkAlgorithm.h.
|
inlineprotected |
Definition at line 1105 of file vtkAlgorithm.h.
std::atomic<vtkTypeBool> vtkAlgorithm::AbortExecute |
Definition at line 403 of file vtkAlgorithm.h.
|
staticprotected |
Definition at line 923 of file vtkAlgorithm.h.
|
protected |
Definition at line 927 of file vtkAlgorithm.h.
|
protected |
Definition at line 934 of file vtkAlgorithm.h.
|
protected |
The error code contains a possible error that occurred while reading or writing the file.
Definition at line 1065 of file vtkAlgorithm.h.
|
protected |
Definition at line 1069 of file vtkAlgorithm.h.
|
protected |
Definition at line 1070 of file vtkAlgorithm.h.
|
staticprotected |
Definition at line 1093 of file vtkAlgorithm.h.
|
protected |
Definition at line 1110 of file vtkAlgorithm.h.