VTK
vtkContextDevice3D.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkContextDevice3D.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
28#ifndef vtkContextDevice3D_h
29#define vtkContextDevice3D_h
30
31#include "vtkRenderingContext2DModule.h" // For export macro
32#include "vtkObject.h"
33#include "vtkVector.h" // For the vector coordinates.
34#include "vtkRect.h" // For the rectangles..
35
36class vtkMatrix4x4;
37class vtkViewport;
38class vtkPen;
39class vtkBrush;
40
41class VTKRENDERINGCONTEXT2D_EXPORT vtkContextDevice3D : public vtkObject
42{
43public:
45 virtual void PrintSelf(ostream &os, vtkIndent indent);
46
48
53 virtual void DrawPoly(const float *verts, int n,
54 const unsigned char *colors = 0, int nc = 0) = 0;
55
60 virtual void DrawLines(const float *verts, int n,
61 const unsigned char *colors = 0, int nc = 0) = 0;
62
66 virtual void DrawPoints(const float *verts, int n,
67 const unsigned char *colors = 0, int nc = 0) = 0;
68
72 virtual void DrawTriangleMesh(const float *mesh, int n,
73 const unsigned char *colors, int nc) = 0;
74
80 virtual void ApplyPen(vtkPen *pen) = 0;
81
87 virtual void ApplyBrush(vtkBrush *brush) = 0;
88
92 virtual void SetMatrix(vtkMatrix4x4 *m) = 0;
93
97 virtual void GetMatrix(vtkMatrix4x4 *m) = 0;
98
102 virtual void MultiplyMatrix(vtkMatrix4x4 *m) = 0;
103
107 virtual void PushMatrix() = 0;
108
112 virtual void PopMatrix() = 0;
113
118 virtual void SetClipping(const vtkRecti &rect) = 0;
119
124 virtual void DisableClipping() { this->EnableClipping(false); }
125
129 virtual void EnableClipping(bool enable) = 0;
130
132
135 virtual void EnableClippingPlane(int i, double *planeEquation) = 0;
136 virtual void DisableClippingPlane(int i) = 0;
138
139protected:
142
143private:
144 vtkContextDevice3D(const vtkContextDevice3D &) VTK_DELETE_FUNCTION;
145 void operator=(const vtkContextDevice3D &) VTK_DELETE_FUNCTION;
146};
147
148#endif
provides a brush that fills shapes drawn by vtkContext2D.
Definition: vtkBrush.h:38
Abstract class for drawing 3D primitives.
static vtkContextDevice3D * New()
virtual void GetMatrix(vtkMatrix4x4 *m)=0
Set the model view matrix for the display.
virtual void PushMatrix()=0
Push the current matrix onto the stack.
virtual void EnableClipping(bool enable)=0
Enable or disable the clipping of the scene.
virtual void SetMatrix(vtkMatrix4x4 *m)=0
Set the model view matrix for the display.
virtual void ApplyBrush(vtkBrush *brush)=0
Apply the supplied brush which controls the outlines of shapes, as well as lines, points and related ...
virtual void SetClipping(const vtkRecti &rect)=0
Supply a float array of length 4 with x1, y1, width, height specifying clipping region for the device...
virtual void PopMatrix()=0
Pop the current matrix off of the stack.
virtual void DisableClippingPlane(int i)=0
virtual void MultiplyMatrix(vtkMatrix4x4 *m)=0
Multiply the current model view matrix by the supplied one.
virtual void DrawLines(const float *verts, int n, const unsigned char *colors=0, int nc=0)=0
Draw lines defined by specified pair of points.
virtual void DrawTriangleMesh(const float *mesh, int n, const unsigned char *colors, int nc)=0
Draw triangles to generate the specified mesh.
virtual void ApplyPen(vtkPen *pen)=0
Apply the supplied pen which controls the outlines of shapes, as well as lines, points and related pr...
virtual void DrawPoints(const float *verts, int n, const unsigned char *colors=0, int nc=0)=0
Draw points at the vertex positions specified.
virtual void DisableClipping()
Disable clipping of the display.
virtual void EnableClippingPlane(int i, double *planeEquation)=0
Enable/Disable the specified clipping plane.
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
virtual void DrawPoly(const float *verts, int n, const unsigned char *colors=0, int nc=0)=0
Draw a polyline between the specified points.
a simple class to control print indentation
Definition: vtkIndent.h:40
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:42
abstract base class for most VTK objects
Definition: vtkObject.h:60
provides a pen that draws the outlines of shapes drawn by vtkContext2D.
Definition: vtkPen.h:40
abstract specification for Viewports
Definition: vtkViewport.h:48