VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkCellDistanceSelector,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00037 #ifndef VTK_CELL_DISTANCE_SELECTOR_H 00038 #define VTK_CELL_DISTANCE_SELECTOR_H 00039 00040 #include "vtkFiltersSelectionModule.h" // For export macro 00041 #include <vtkSelectionAlgorithm.h> 00042 #include <vtkSmartPointer.h> // For smart pointers 00043 00044 class vtkDataSet; 00045 class vtkSelection; 00046 class vtkAlgorithmOutput; 00047 class vtkDataArray; 00048 00050 00052 class VTKFILTERSSELECTION_EXPORT vtkCellDistanceSelector : public vtkSelectionAlgorithm 00053 { 00054 public: 00055 vtkTypeMacro(vtkCellDistanceSelector,vtkSelectionAlgorithm); 00056 virtual void PrintSelf(ostream& os, vtkIndent indent); 00058 00059 static vtkCellDistanceSelector* New(); 00060 00062 00063 enum InputPorts 00064 { 00065 INPUT_MESH = 0, 00066 INPUT_SELECTION = 1 00067 }; 00069 00071 00073 void SetInputMeshConnection( vtkAlgorithmOutput* in ) 00074 { this->SetInputConnection( INPUT_MESH, in ); } 00076 00078 00079 void SetInputMesh( vtkDataObject* obj ) 00080 { this->SetInputData( INPUT_MESH, obj ); } 00082 00084 00086 void SetInputSelectionConnection( vtkAlgorithmOutput* in ) 00087 { this->SetInputConnection( INPUT_SELECTION, in ); } 00089 00091 00092 void SetInputSelection( vtkSelection* obj ) 00093 { this->SetInputData( INPUT_SELECTION, obj ); } 00095 00097 00099 vtkSetMacro(Distance,int); 00100 vtkGetMacro(Distance,int); 00102 00104 00106 vtkSetMacro(IncludeSeed,int); 00107 vtkGetMacro(IncludeSeed,int); 00108 vtkBooleanMacro(IncludeSeed,int); 00110 00112 00114 vtkSetMacro(AddIntermediate,int); 00115 vtkGetMacro(AddIntermediate,int); 00116 vtkBooleanMacro(AddIntermediate,int); 00118 00119 protected: 00120 vtkCellDistanceSelector (); 00121 virtual ~vtkCellDistanceSelector (); 00122 00123 void AddSelectionNode(vtkSelection* output, vtkSmartPointer<vtkDataArray> outIndices, int partNumber, int d); 00124 00125 virtual int FillInputPortInformation(int port, vtkInformation *info); 00126 virtual int RequestData(vtkInformation*,vtkInformationVector**,vtkInformationVector*); 00127 00130 int Distance; 00131 00133 int IncludeSeed; 00134 00137 int AddIntermediate; 00138 00139 private: 00140 vtkCellDistanceSelector(const vtkCellDistanceSelector &); // Not implemented 00141 void operator= (const vtkCellDistanceSelector &); // Not implemented 00142 }; 00143 00144 #endif /* VTK_CELL_DISTANCE_SELECTOR_H */