VTK
vtkPointGaussianMapper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4 
5  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
6  All rights reserved.
7  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
8 
9  This software is distributed WITHOUT ANY WARRANTY; without even
10  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  PURPOSE. See the above copyright notice for more information.
12 
13 =========================================================================*/
24 #ifndef __vtkPointGaussianMapper_h
25 #define __vtkPointGaussianMapper_h
26 
27 #include "vtkRenderingCoreModule.h" // For export macro
28 #include "vtkPolyDataMapper.h"
29 
31 {
32 public:
33  static vtkPointGaussianMapper* New();
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
38 
39  vtkSetStringMacro(ScaleArray);
40  vtkGetStringMacro(ScaleArray);
42 
44 
46  vtkSetMacro(DefaultRadius,double);
47  vtkGetMacro(DefaultRadius,double);
49 
50 protected:
52  ~vtkPointGaussianMapper();
53 
54  char *ScaleArray;
55  double DefaultRadius;
56 
57 private:
58  vtkPointGaussianMapper(const vtkPointGaussianMapper&); // Not implemented.
59  void operator=(const vtkPointGaussianMapper&); // Not implemented.
60 };
61 
62 #endif
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:83
typedef void(APIENTRYP PFNGLBLENDCOLORPROC)(GLclampf red
#define vtkSetStringMacro(name)
Definition: vtkSetGet.h:94
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:632
a simple class to control print indentation
Definition: vtkIndent.h:38
#define vtkGetStringMacro(name)
Definition: vtkSetGet.h:120
map vtkPolyData to graphics primitives
#define VTKRENDERINGCORE_EXPORT
static vtkPolyDataMapper * New()
draw PointGaussians using imposters
#define vtkSetMacro(name, type)
Definition: vtkSetGet.h:69