VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkVectorDot.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00028 #ifndef __vtkVectorDot_h 00029 #define __vtkVectorDot_h 00030 00031 #include "vtkFiltersCoreModule.h" // For export macro 00032 #include "vtkDataSetAlgorithm.h" 00033 00034 class VTKFILTERSCORE_EXPORT vtkVectorDot : public vtkDataSetAlgorithm 00035 { 00036 public: 00037 vtkTypeMacro(vtkVectorDot,vtkDataSetAlgorithm); 00038 void PrintSelf(ostream& os, vtkIndent indent); 00039 00041 static vtkVectorDot *New(); 00042 00044 00045 vtkSetVector2Macro(ScalarRange,double); 00047 00049 00050 vtkGetVectorMacro(ScalarRange,double,2); 00052 00053 protected: 00054 vtkVectorDot(); 00055 ~vtkVectorDot() {} 00056 00057 int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00058 double ScalarRange[2]; 00059 private: 00060 vtkVectorDot(const vtkVectorDot&); // Not implemented. 00061 void operator=(const vtkVectorDot&); // Not implemented. 00062 }; 00063 00064 #endif