VTK
vtkOpenGLPointGaussianMapper.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 =========================================================================*/
22 #ifndef vtkOpenGLPointGaussianMapper_h
23 #define vtkOpenGLPointGaussianMapper_h
24 
25 #include "vtkRenderingOpenGL2Module.h" // For export macro
26 #include "vtkPointGaussianMapper.h"
27 
28 class vtkOpenGLPointGaussianMapperHelper;
29 
30 class VTKRENDERINGOPENGL2_EXPORT vtkOpenGLPointGaussianMapper : public vtkPointGaussianMapper
31 {
32 public:
35  void PrintSelf(ostream& os, vtkIndent indent) override;
36 
42  void ReleaseGraphicsResources(vtkWindow *) override;
43 
47  bool GetIsOpaque() override;
48 
49 protected:
51  ~vtkOpenGLPointGaussianMapper() override;
52 
53  void RenderPiece(vtkRenderer *ren, vtkActor *act) override;
54 
55  vtkOpenGLPointGaussianMapperHelper *Helper;
57 
58 private:
60  void operator=(const vtkOpenGLPointGaussianMapper&) = delete;
61 };
62 
63 #endif
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:51
record modification and/or execution time
Definition: vtkTimeStamp.h:35
abstract specification for renderers
Definition: vtkRenderer.h:63
virtual bool GetIsOpaque()
Returns if the mapper does not expect to have translucent geometry.
virtual void RenderPiece(vtkRenderer *ren, vtkActor *act)=0
Implemented by sub classes.
static vtkPointGaussianMapper * New()
window superclass for vtkRenderWindow
Definition: vtkWindow.h:37
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:39
draw PointGaussians using imposters
vtkOpenGLPointGaussianMapperHelper * Helper
draw PointGaussians using imposters
void ReleaseGraphicsResources(vtkWindow *) override
Release any graphics resources that are being consumed by this mapper.
Definition: vtkMapper.h:111