vtk
Class vtkPointSetToPointSetFilter

java.lang.Object
  extended byvtk.vtkObjectBase
      extended byvtk.vtkObject
          extended byvtk.vtkProcessObject
              extended byvtk.vtkSource
                  extended byvtk.vtkPointSetSource
                      extended byvtk.vtkPointSetToPointSetFilter
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
vtkTransformFilter, vtkWarpLens, vtkWarpScalar, vtkWarpTo, vtkWarpVector, vtkWeightedTransformFilter

public class vtkPointSetToPointSetFilter
extends vtkPointSetSource
implements java.io.Serializable

vtkPointSetToPointSetFilter - abstract filter class . vtkPointSetToPointSetFilter is an abstract filter class whose subclasses take as input a point set and generates a point set on output. At a minimum, the concrete subclasses of vtkPointSetToPointSetFilter modify their point coordinates. They never modify their topological form, however. This is an abstract filter type. What that means is that the output of the filter is an abstract type (i.e., vtkPointSet), no matter what the input of the filter is. This can cause problems connecting together filters due to the change in dataset type. (For example, in a series of filters processing vtkPolyData, when a vtkPointSetToPointSetFilter or subclass is introduced into the pipeline, if the filter downstream of it takes vtkPolyData as input, the pipeline connection cannot be made.) To get around this problem, use one of the convenience methods to return a concrete type (e.g., vtkGetPolyDataOutput(), GetStructuredGridOutput(), etc.). JavaBean wrapper for vtkPointSetToPointSetFilter object.

Author:
vtk2jbean Automatic JavaBean wrapper for VTK.
See Also:
vtkTransformFilter, vtkWarpScalar, vtkWarpTo, Serialized Form

Field Summary
protected  java.beans.PropertyChangeSupport changes
           
 
Fields inherited from class vtk.vtkObjectBase
vtkId
 
Constructor Summary
  vtkPointSetToPointSetFilter()
           
protected vtkPointSetToPointSetFilter(int dmy)
           
 
Method Summary
 void computeInputUpdateExtents(vtkDataObject id0)
          By default copy the output update extent to the input
 java.lang.String getClassName()
          Return the class name as a string.
 vtkPointSet getInput()
          Get the input data or filter.
 vtkPointSet getOutput()
          Get the output of this filter.
 vtkPointSet getOutput(int id0)
          Get the output of this filter.
 vtkPolyData getPolyDataOutput()
          Get the output as vtkPolyData.
 vtkStructuredGrid getStructuredGridOutput()
          Get the output as vtkStructuredGrid.
 vtkPointSetToPointSetFilter getThisPointSetToPointSetFilter()
           
 vtkUnstructuredGrid getUnstructuredGridOutput()
          Get the output as vtkUnstructuredGrid.
 int isA(java.lang.String id0)
          Return 1 if this class is the same type of (or a subclass of) the named class.
 void setInput(vtkPointSet id0)
          Specify the input data or filter.
protected  void VTKCastInit()
           
 
Methods inherited from class vtk.vtkPointSetSource
getThisPointSetSource, setOutput
 
Methods inherited from class vtk.vtkSource
getNumberOfOutputs, getOutputIndex, getReleaseDataFlag, getThisSource, inRegisterLoop, propagateUpdateExtent, releaseDataFlagOff, releaseDataFlagOn, setReleaseDataFlag, triggerAsynchronousUpdate, unRegister, unRegisterAllOutputs, update, updateData, updateInformation, updateWholeExtent
 
Methods inherited from class vtk.vtkProcessObject
abortExecuteOff, abortExecuteOn, getAbortExecute, getErrorCode, getNumberOfInputs, getProgress, getProgressMaxValue, getProgressMinValue, getProgressText, getThisProcessObject, removeAllInputs, setAbortExecute, setProgress, setProgressText, squeezeInputArray, updateProgress
 
Methods inherited from class vtk.vtkObject
AddObserver, breakOnError, debugOff, debugOn, getDebug, getGlobalWarningDisplay, getMTime, getThisObject, globalWarningDisplayOff, globalWarningDisplayOn, hasObserver, hasObserver, invokeEvent, invokeEvent, modified, Print, PrintRevisions, register, removeObserver, removeObservers, removeObservers, setDebug, setGlobalWarningDisplay, VTKInit
 
Methods inherited from class vtk.vtkObjectBase
addPropertyChangeListener, finalize, getReferenceCount, getThisObjectBase, isTypeOf, removePropertyChangeListener, setReferenceCount, VTKDelete
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

changes

protected java.beans.PropertyChangeSupport changes
Constructor Detail

vtkPointSetToPointSetFilter

public vtkPointSetToPointSetFilter()

vtkPointSetToPointSetFilter

protected vtkPointSetToPointSetFilter(int dmy)
Method Detail

getThisPointSetToPointSetFilter

public vtkPointSetToPointSetFilter getThisPointSetToPointSetFilter()

getClassName

public java.lang.String getClassName()
Description copied from class: vtkObjectBase
Return the class name as a string. This method is defined in all subclasses of vtkObjectBase with the vtkTypeRevisionMacro found in vtkSetGet.h.

Overrides:
getClassName in class vtkPointSetSource

isA

public int isA(java.lang.String id0)
Description copied from class: vtkObjectBase
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 vtkTypeRevisionMacro found in vtkSetGet.h.

Overrides:
isA in class vtkPointSetSource

setInput

public void setInput(vtkPointSet id0)
Specify the input data or filter.


getInput

public vtkPointSet getInput()
Get the input data or filter.


getOutput

public vtkPointSet getOutput()
Get the output of this filter. If output is NULL, then input hasn't been set, which is necessary for abstract filter objects.

Overrides:
getOutput in class vtkPointSetSource

getOutput

public vtkPointSet getOutput(int id0)
Get the output of this filter. If output is NULL, then input hasn't been set, which is necessary for abstract filter objects.

Overrides:
getOutput in class vtkPointSetSource

getPolyDataOutput

public vtkPolyData getPolyDataOutput()
Get the output as vtkPolyData. Performs run-time checking.


getStructuredGridOutput

public vtkStructuredGrid getStructuredGridOutput()
Get the output as vtkStructuredGrid. Performs run-time checking.


getUnstructuredGridOutput

public vtkUnstructuredGrid getUnstructuredGridOutput()
Get the output as vtkUnstructuredGrid. Performs run-time checking.


computeInputUpdateExtents

public void computeInputUpdateExtents(vtkDataObject id0)
By default copy the output update extent to the input

Overrides:
computeInputUpdateExtents in class vtkSource

VTKCastInit

protected void VTKCastInit()
Overrides:
VTKCastInit in class vtkPointSetSource


Copyright © 2004 Sydney ViSLAB. All Rights Reserved.