VTK  9.3.0
vtkOpenGLGL2PSHelperImpl.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
3 
10 #ifndef vtkOpenGLGL2PSHelperImpl_h
11 #define vtkOpenGLGL2PSHelperImpl_h
12 
13 #include "vtkOpenGLGL2PSHelper.h"
14 #include "vtkRenderingGL2PSOpenGL2Module.h" // For export macro
15 
16 VTK_ABI_NAMESPACE_BEGIN
17 class vtkMatrix4x4;
18 class vtkPoints;
19 
20 class VTKRENDERINGGL2PSOPENGL2_EXPORT vtkOpenGLGL2PSHelperImpl : public vtkOpenGLGL2PSHelper
21 {
22 public:
25  void PrintSelf(ostream& os, vtkIndent indent) override;
26 
28  vtkTransformFeedback* tfc, vtkRenderer* ren, vtkActor* act) override;
30  vtkTransformFeedback* tfc, vtkRenderer* ren, unsigned char col[4]) override;
31  void ProcessTransformFeedback(vtkTransformFeedback* tfc, vtkRenderer* ren, float col[4]) override;
32 
33  void DrawString(const std::string& str, vtkTextProperty* tprop, double pos[3],
34  double backgroundDepth, vtkRenderer* ren) override;
35 
36  void DrawPath(vtkPath* path, double rasterPos[3], double windowPos[2], unsigned char rgba[4],
37  double scale[2] = nullptr, double rotateAngle = 0.0, float strokeWidth = -1,
38  const char* label = nullptr) override;
39 
40  void Draw3DPath(vtkPath* path, vtkMatrix4x4* actorMatrix, double rasterPos[3],
41  unsigned char actorColor[4], vtkRenderer* ren, const char* label = nullptr) override;
42 
43  void DrawImage(vtkImageData* input, double pos[3]) override;
44 
45 protected:
48 
52  static const char* TextPropertyToPSFontName(vtkTextProperty* tprop);
53 
58 
63  static void GetTransformParameters(vtkRenderer* ren, vtkMatrix4x4* actorMatrix,
64  vtkMatrix4x4* xform, double vpOrigin[2], double halfSize[2], double zfact[2]);
65 
67 
70  static void ProjectPoint(double point[3], vtkRenderer* ren, vtkMatrix4x4* actorMatrix = nullptr);
71  static void ProjectPoint(double point[4], vtkMatrix4x4* transformMatrix, double viewportOrigin[2],
72  double halfWidth, double halfHeight, double zfact1, double zfact2);
73  static void ProjectPoints(
74  vtkPoints* points, vtkRenderer* ren, vtkMatrix4x4* actorMatrix = nullptr);
76 
78 
82  static void UnprojectPoint(double point[4], vtkMatrix4x4* invTransformMatrix,
83  double viewportOrigin[2], double halfWidth, double halfHeight, double zfact1, double zfact2);
84  static void UnprojectPoints(
85  double* points3D, vtkIdType numPoints, vtkRenderer* ren, vtkMatrix4x4* actorMatrix = nullptr);
87 
88  void DrawPathPS(vtkPath* path, double rasterPos[3], double windowPos[2], unsigned char rgba[4],
89  double scale[2], double rotateAngle, float strokeWidth, const std::string& label);
90  void DrawPathPDF(vtkPath* path, double rasterPos[3], double windowPos[2], unsigned char rgba[4],
91  double scale[2], double rotateAngle, float strokeWidth, const std::string& label);
92  void DrawPathSVG(vtkPath* path, double rasterPos[3], double windowPos[2], unsigned char rgba[4],
93  double scale[2], double rotateAngle, float strokeWidth, const std::string& label);
94 
95 private:
97  void operator=(const vtkOpenGLGL2PSHelperImpl&) = delete;
98 };
99 
100 VTK_ABI_NAMESPACE_END
101 #endif // vtkOpenGLGL2PSHelperImpl_h
represents an object (geometry & properties) in a rendered scene
Definition: vtkActor.h:50
topologically and geometrically regular array of data
Definition: vtkImageData.h:52
a simple class to control print indentation
Definition: vtkIndent.h:38
represent and manipulate 4x4 transformation matrices
Definition: vtkMatrix4x4.h:40
vtkOpenGLGL2PSHelper override implementation.
void DrawPath(vtkPath *path, double rasterPos[3], double windowPos[2], unsigned char rgba[4], double scale[2]=nullptr, double rotateAngle=0.0, float strokeWidth=-1, const char *label=nullptr) override
Generate PS, EPS, or SVG markup from a vtkPath object, and then inject it into the output using the g...
void DrawPathPDF(vtkPath *path, double rasterPos[3], double windowPos[2], unsigned char rgba[4], double scale[2], double rotateAngle, float strokeWidth, const std::string &label)
static const char * TextPropertyToPSFontName(vtkTextProperty *tprop)
Translate the tprop's fontname into a Postscript font name.
void ProcessTransformFeedback(vtkTransformFeedback *tfc, vtkRenderer *ren, vtkActor *act) override
Parse the vertex information in tfc and inject primitives into GL2PS.
void DrawString(const std::string &str, vtkTextProperty *tprop, double pos[3], double backgroundDepth, vtkRenderer *ren) override
Format the text in str according to tprop and instruct GL2PS to draw it at pixel coordinate pos.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static void UnprojectPoint(double point[4], vtkMatrix4x4 *invTransformMatrix, double viewportOrigin[2], double halfWidth, double halfHeight, double zfact1, double zfact2)
Unproject the point from device coordinates into world coordinates.
void ProcessTransformFeedback(vtkTransformFeedback *tfc, vtkRenderer *ren, float col[4]) override
Parse the vertex information in tfc and inject primitives into GL2PS.
static vtkOpenGLGL2PSHelperImpl * New()
static void ProjectPoints(vtkPoints *points, vtkRenderer *ren, vtkMatrix4x4 *actorMatrix=nullptr)
Project the point from world coordinates into device coordinates.
void DrawPathPS(vtkPath *path, double rasterPos[3], double windowPos[2], unsigned char rgba[4], double scale[2], double rotateAngle, float strokeWidth, const std::string &label)
void Draw3DPath(vtkPath *path, vtkMatrix4x4 *actorMatrix, double rasterPos[3], unsigned char actorColor[4], vtkRenderer *ren, const char *label=nullptr) override
Transform the path using the actor's matrix and current GL state, then draw it to GL2PS.
void DrawPathSVG(vtkPath *path, double rasterPos[3], double windowPos[2], unsigned char rgba[4], double scale[2], double rotateAngle, float strokeWidth, const std::string &label)
void DrawImage(vtkImageData *input, double pos[3]) override
Draw the image at pos.
static void ProjectPoint(double point[3], vtkRenderer *ren, vtkMatrix4x4 *actorMatrix=nullptr)
Project the point from world coordinates into device coordinates.
~vtkOpenGLGL2PSHelperImpl() override
static void GetTransformParameters(vtkRenderer *ren, vtkMatrix4x4 *actorMatrix, vtkMatrix4x4 *xform, double vpOrigin[2], double halfSize[2], double zfact[2])
Extracts the information needed for transforming and projecting points from a renderer.
static int TextPropertyToGL2PSAlignment(vtkTextProperty *tprop)
Convert the alignment hint in tprop to a GL2PS text alignment constant.
void ProcessTransformFeedback(vtkTransformFeedback *tfc, vtkRenderer *ren, unsigned char col[4]) override
Parse the vertex information in tfc and inject primitives into GL2PS.
static void ProjectPoint(double point[4], vtkMatrix4x4 *transformMatrix, double viewportOrigin[2], double halfWidth, double halfHeight, double zfact1, double zfact2)
Project the point from world coordinates into device coordinates.
static void UnprojectPoints(double *points3D, vtkIdType numPoints, vtkRenderer *ren, vtkMatrix4x4 *actorMatrix=nullptr)
Unproject the point from device coordinates into world coordinates.
Access GL2PS functionality.
concrete dataset representing a path defined by Bezier curves.
Definition: vtkPath.h:34
represent and manipulate 3D points
Definition: vtkPoints.h:38
abstract specification for renderers
Definition: vtkRenderer.h:71
represent text properties.
Manages a TransformFeedback buffer.
@ point
Definition: vtkX3D.h:236
@ points
Definition: vtkX3D.h:446
@ scale
Definition: vtkX3D.h:229
@ string
Definition: vtkX3D.h:490
int vtkIdType
Definition: vtkType.h:315