VTK
vtkPiecewiseFunctionShiftScale.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPiecewiseFunctionShiftScale.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 =========================================================================*/
15 
21 #ifndef __vtkPiecewiseFunctionShiftScale_h
22 #define __vtkPiecewiseFunctionShiftScale_h
23 
25 
27 
29 {
30 public:
33  void PrintSelf(ostream& os, vtkIndent indent);
34 
35  vtkSetMacro(PositionShift, double);
36  vtkSetMacro(PositionScale, double);
37  vtkSetMacro(ValueShift, double);
38  vtkSetMacro(ValueScale, double);
39 
40  vtkGetMacro(PositionShift, double);
41  vtkGetMacro(PositionScale, double);
42  vtkGetMacro(ValueShift, double);
43  vtkGetMacro(ValueScale, double);
44 
45 protected:
48 
51 
52  double PositionShift;
53  double PositionScale;
54  double ValueShift;
55  double ValueScale;
56 
57 private:
59  void operator=(const vtkPiecewiseFunctionShiftScale&); // Not implemented
60 };
61 
62 #endif