VTK
vtkVectorDot.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVectorDot.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 =========================================================================*/
28 #ifndef __vtkVectorDot_h
29 #define __vtkVectorDot_h
30 
31 #include "vtkDataSetAlgorithm.h"
32 
34 {
35 public:
37  void PrintSelf(ostream& os, vtkIndent indent);
38 
40  static vtkVectorDot *New();
41 
43 
44  vtkSetVector2Macro(ScalarRange,double);
46 
48 
49  vtkGetVectorMacro(ScalarRange,double,2);
51 
52 protected:
53  vtkVectorDot();
55 
57  double ScalarRange[2];
58 private:
59  vtkVectorDot(const vtkVectorDot&); // Not implemented.
60  void operator=(const vtkVectorDot&); // Not implemented.
61 };
62 
63 #endif