VTK
vtkHiddenLineRemovalPass.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkHiddenLineRemovalPass.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15
25#ifndef vtkHiddenLineRemovalPass_h
26#define vtkHiddenLineRemovalPass_h
27
28#include "vtkRenderingOpenGLModule.h" // For export macro
29#include "vtkRenderPass.h"
30
31#include <vector> // For std::vector!
32
33class vtkProp;
34class vtkViewport;
35
36class VTKRENDERINGOPENGL_EXPORT vtkHiddenLineRemovalPass : public vtkRenderPass
37{
38public:
41 virtual void PrintSelf(ostream &os, vtkIndent indent);
42
43 virtual void Render(const vtkRenderState *s);
44
48 static bool WireframePropsExist(vtkProp **propArray, int nProps);
49
50protected:
53
54 void SetRepresentation(std::vector<vtkProp*> &props, int repr);
55 int RenderProps(std::vector<vtkProp*> &props, vtkViewport *vp);
56
57private:
58 vtkHiddenLineRemovalPass(const vtkHiddenLineRemovalPass&) VTK_DELETE_FUNCTION;
59 void operator=(const vtkHiddenLineRemovalPass&) VTK_DELETE_FUNCTION;
60};
61
62#endif // vtkHiddenLineRemovalPass_h
static vtkHiddenLineRemovalPass * New()
a simple class to control print indentation
Definition: vtkIndent.h:40
abstract superclass for all actors, volumes and annotations
Definition: vtkProp.h:48
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:59
Context in which a vtkRenderPass will render.
abstract specification for Viewports
Definition: vtkViewport.h:48
@ vector
Definition: vtkX3D.h:237