00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkVectorDot.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00045 #ifndef __vtkVectorDot_h 00046 #define __vtkVectorDot_h 00047 00048 #include "vtkDataSetToDataSetFilter.h" 00049 00050 class VTK_GRAPHICS_EXPORT vtkVectorDot : public vtkDataSetToDataSetFilter 00051 { 00052 public: 00053 vtkTypeRevisionMacro(vtkVectorDot,vtkDataSetToDataSetFilter); 00054 void PrintSelf(ostream& os, vtkIndent indent); 00055 00057 static vtkVectorDot *New(); 00058 00060 00061 vtkSetVector2Macro(ScalarRange,float); 00063 00065 00066 vtkGetVectorMacro(ScalarRange,float,2); 00068 00069 protected: 00070 vtkVectorDot(); 00071 ~vtkVectorDot() {}; 00072 00073 void Execute(); 00074 float ScalarRange[2]; 00075 private: 00076 vtkVectorDot(const vtkVectorDot&); // Not implemented. 00077 void operator=(const vtkVectorDot&); // Not implemented. 00078 }; 00079 00080 #endif