dox/Graphics/vtkHierarchicalBoxContour.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00035
#ifndef __vtkHierarchicalBoxContour_h
00036
#define __vtkHierarchicalBoxContour_h
00037
00038
#include "vtkHierarchicalBoxToPolyDataFilter.h"
00039
00040
class vtkContourFilter;
00041
class vtkDataObject;
00042
00043 class VTK_GRAPHICS_EXPORT vtkHierarchicalBoxContour :
public vtkHierarchicalBoxToPolyDataFilter
00044 {
00045
public:
00046
static vtkHierarchicalBoxContour *
New();
00047
00048 vtkTypeRevisionMacro(vtkHierarchicalBoxContour,
00049 vtkHierarchicalBoxToPolyDataFilter);
00050
void PrintSelf(ostream& os,
vtkIndent indent);
00051
00053
00054
void SetValue(
int i,
double value);
00055
double GetValue(
int i);
00056
double *GetValues();
00057
void GetValues(
double *contourValues);
00058
void SetNumberOfContours(
int number);
00059
int GetNumberOfContours();
00060
const char* GetInputScalarsSelection();
00061
void SelectInputScalars(
const char *fieldName);
00062
unsigned long GetMTime();
00064
00065
protected:
00066 vtkHierarchicalBoxContour();
00067 ~vtkHierarchicalBoxContour();
00068
00069
virtual void ExecuteData(
vtkDataObject*);
00070
00071 vtkContourFilter* Contour;
00072
00073
private:
00074 vtkHierarchicalBoxContour(
const vtkHierarchicalBoxContour&);
00075
void operator=(
const vtkHierarchicalBoxContour&);
00076 };
00077
00078
00079
#endif
00080
00081
00082