Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
vtkProgrammableFilter Class Reference
a user-programmable filter.
More...
#include <vtkProgrammableFilter.h>
Inheritance diagram for vtkProgrammableFilter:
[legend]Collaboration diagram for vtkProgrammableFilter:
[legend]List of all members.
Detailed Description
a user-programmable filter.
-
Date:
-
2000/12/10 20:08:48
-
Revision:
-
1.15
vtkProgrammableFilter is a filter that can be programmed by the user. To use the filter you define a function that retrieves input of the correct type, creates data, and then manipulates the output of the filter. Using this filter avoids the need for subclassing - and the function can be defined in an interpreter wrapper language such as Tcl or Java.
The trickiest part of using this filter is that the input and output methods are unusual and cannot be compile-time type checked. Instead, as a user of this filter it is your responsibility to set and get the correct input and output types.
-
Warning:
-
The filter correctly manages modified time and network execution in most cases. However, if you change the definition of the filter function, you'll want to send a manual Modified() method to the filter to force it to reexecute.
-
See also:
-
vtkProgrammablePointDataFilter vtkProgrammableSource
-
Examples:
-
vtkProgrammableFilter (examples)
Definition at line 74 of file vtkProgrammableFilter.h.
Constructor & Destructor Documentation
vtkProgrammableFilter::vtkProgrammableFilter |
( |
|
) |
[protected] |
|
vtkProgrammableFilter::~vtkProgrammableFilter |
( |
|
) |
[protected] |
|
vtkProgrammableFilter::vtkProgrammableFilter |
( |
const vtkProgrammableFilter & |
|
) |
[inline, protected] |
|
Member Function Documentation
vtkProgrammableFilter* vtkProgrammableFilter::New |
( |
|
) |
[static] |
|
|
Instantiate object with no start, end, or progress methods.
Reimplemented from vtkDataSetSource. |
virtual const char* vtkProgrammableFilter::GetClassName |
( |
|
) |
[virtual] |
|
int vtkProgrammableFilter::IsTypeOf |
( |
const char * |
type |
) |
[static] |
|
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkDataSetToDataSetFilter. |
virtual int vtkProgrammableFilter::IsA |
( |
const char * |
type |
) |
[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 vtkDataSetToDataSetFilter. |
vtkProgrammableFilter* vtkProgrammableFilter::SafeDownCast |
( |
vtkObject * |
o |
) |
[static] |
|
void vtkProgrammableFilter::SetExecuteMethod |
( |
void(* |
f)(void *), |
|
|
void * |
arg |
|
) |
|
|
|
Specify the function to use to operate on the point attribute data. Note that the function takes a single (void *) argument. |
void vtkProgrammableFilter::SetExecuteMethodArgDelete |
( |
void(* |
f)(void *) |
) |
|
|
|
Set the arg delete method. This is used to free user memory. |
vtkPolyData* vtkProgrammableFilter::GetPolyDataInput |
( |
|
) |
|
|
|
Get the input as a concrete type. This method is typically used by the writer of the filter function to get the input as a particular type (i.e., it essentially does type casting). It is the users responsibility to know the correct type of the input data. |
|
Get the input as a concrete type. |
|
Get the input as a concrete type. |
|
Get the input as a concrete type. |
|
Get the input as a concrete type. |
void vtkProgrammableFilter::operator= |
( |
const vtkProgrammableFilter & |
|
) |
[inline, protected] |
|
void vtkProgrammableFilter::Execute |
( |
|
) |
[protected, virtual] |
|
Member Data Documentation
void(* vtkProgrammableFilter::ExecuteMethod)(void *) [protected]
|
|
void(* vtkProgrammableFilter::ExecuteMethodArgDelete)(void *) [protected]
|
|
void* vtkProgrammableFilter::ExecuteMethodArg [protected]
|
|
The documentation for this class was generated from the following file:
Generated on Wed Nov 21 12:57:53 2001 for VTK by
1.2.11.1 written by Dimitri van Heesch,
© 1997-2001