50 #ifndef __vtkHyperOctreeContourFilter_h
51 #define __vtkHyperOctreeContourFilter_h
67 class vtkHyperOctreeContourPointsGrabber;
85 void SetValue(
int i,
double value)
87 this->ContourValues->SetValue(i,value);
93 double GetValue(
int i)
95 return this->ContourValues->GetValue(i);
104 return this->ContourValues->GetValues();
112 void GetValues(
double *contourValues)
114 this->ContourValues->GetValues(contourValues);
122 void SetNumberOfContours(
int number)
124 this->ContourValues->SetNumberOfContours(number);
130 int GetNumberOfContours()
132 return this->ContourValues->GetNumberOfContours();
139 void GenerateValues(
int numContours,
double range[2])
141 this->ContourValues->GenerateValues(numContours, range);
148 void GenerateValues(
int numContours,
double
149 rangeStart,
double rangeEnd)
151 this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);
167 void CreateDefaultLocator();
185 double ComputePointValue(
int ptIndices[3]);
187 void ContourNode1D();
236 friend class vtkHyperOctreeContourPointsGrabber;