VTK
vtkContourValues.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkContourValues.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
27 #ifndef vtkContourValues_h
28 #define vtkContourValues_h
29 
30 #include "vtkCommonMiscModule.h" // For export macro
31 #include "vtkObject.h"
32 
33 class vtkDoubleArray;
34 
35 class VTKCOMMONMISC_EXPORT vtkContourValues : public vtkObject
36 {
37 public:
41  static vtkContourValues *New();
42 
43  vtkTypeMacro(vtkContourValues,vtkObject);
44  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
45 
49  void SetValue(int i, double value);
50 
55  double GetValue(int i);
56 
61  double *GetValues();
62 
67  void GetValues(double *contourValues);
68 
74  void SetNumberOfContours(const int number);
75 
80 
85  void GenerateValues(int numContours, double range[2]);
86 
91  void GenerateValues(int numContours, double rangeStart, double rangeEnd);
92 
93 
94 protected:
96  ~vtkContourValues() VTK_OVERRIDE;
97 
98  vtkDoubleArray *Contours;
99 
100 private:
101  vtkContourValues(const vtkContourValues&) VTK_DELETE_FUNCTION;
102  void operator=(const vtkContourValues&) VTK_DELETE_FUNCTION;
103 };
104 
105 #endif
helper object to manage setting and generating contour values
~vtkContourValues() override
static vtkContourValues * New()
Construct object with a single contour value at 0.0.
int GetNumberOfContours()
Return the number of contours in the.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void GenerateValues(int numContours, double rangeStart, double rangeEnd)
Generate numContours equally spaced contour values between specified range.
void GenerateValues(int numContours, double range[2])
Generate numContours equally spaced contour values between specified range.
void SetNumberOfContours(const int number)
Set the number of contours to place into the list.
void SetValue(int i, double value)
Set the ith contour value.
double GetValue(int i)
Get the ith contour value.
void GetValues(double *contourValues)
Fill a supplied list with contour values.
double * GetValues()
Return a pointer to a list of contour values.
dynamic, self-adjusting array of double
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract base class for most VTK objects
Definition: vtkObject.h:60
@ value
Definition: vtkX3D.h:220
@ range
Definition: vtkX3D.h:238