VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 00005 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00006 All rights reserved. 00007 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00008 00009 This software is distributed WITHOUT ANY WARRANTY; without even 00010 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00011 PURPOSE. See the above copyright notice for more information. 00012 00013 =========================================================================*/ 00024 #ifndef __vtkPointGaussianMapper_h 00025 #define __vtkPointGaussianMapper_h 00026 00027 #include "vtkRenderingCoreModule.h" // For export macro 00028 #include "vtkPolyDataMapper.h" 00029 00030 class VTKRENDERINGCORE_EXPORT vtkPointGaussianMapper : public vtkPolyDataMapper 00031 { 00032 public: 00033 static vtkPointGaussianMapper* New(); 00034 vtkTypeMacro(vtkPointGaussianMapper, vtkPolyDataMapper) 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00038 00039 vtkSetStringMacro(ScaleArray); 00040 vtkGetStringMacro(ScaleArray); 00042 00044 00046 vtkSetMacro(DefaultRadius,double); 00047 vtkGetMacro(DefaultRadius,double); 00049 00050 protected: 00051 vtkPointGaussianMapper(); 00052 ~vtkPointGaussianMapper(); 00053 00054 char *ScaleArray; 00055 double DefaultRadius; 00056 00057 private: 00058 vtkPointGaussianMapper(const vtkPointGaussianMapper&); // Not implemented. 00059 void operator=(const vtkPointGaussianMapper&); // Not implemented. 00060 }; 00061 00062 #endif