VTK  9.4.20251007
vtkPlotSurface.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
15
16#ifndef vtkPlotSurface_h
17#define vtkPlotSurface_h
18
19#include "vtkChartsCoreModule.h" // For export macro
20#include "vtkNew.h" // For vtkNew ivar
21#include "vtkPlot3D.h"
22#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
23
24VTK_ABI_NAMESPACE_BEGIN
25class vtkContext2D;
26class vtkLookupTable;
27class vtkTable;
28
29class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkPlotSurface : public vtkPlot3D
30{
31public:
32 vtkTypeMacro(vtkPlotSurface, vtkPlot3D);
33 void PrintSelf(ostream& os, vtkIndent indent) override;
35
39 bool Paint(vtkContext2D* painter) override;
40
44 void SetInputData(vtkTable* input) override;
45
47
52 void SetInputData(vtkTable* input, const vtkStdString& xName, const vtkStdString& yName,
53 const vtkStdString& zName) override;
54 void SetInputData(vtkTable* input, const vtkStdString& xName, const vtkStdString& yName,
55 const vtkStdString& zName, const vtkStdString& colorName) override;
57 vtkTable* input, vtkIdType xColumn, vtkIdType yColumn, vtkIdType zColumn) override;
59
66 void SetXRange(float min, float max);
67
74 void SetYRange(float min, float max);
75
76protected:
78 ~vtkPlotSurface() override;
79
84
88 void InsertSurfaceVertex(float* data, float value, int i, int j, int& pos);
89
94
98 float ColumnToX(int columnIndex);
99
103 float RowToY(int rowIndex);
104
109
114
119
124
129
134
139
141
144 float XMinimum;
145 float XMaximum;
146 float YMinimum;
147 float YMaximum;
149
155
156private:
157 vtkPlotSurface(const vtkPlotSurface&) = delete;
158 void operator=(const vtkPlotSurface&) = delete;
159};
160
161VTK_ABI_NAMESPACE_END
162#endif // vtkPlotSurface_h
Class for drawing 2D primitives to a graphical context.
a simple class to control print indentation
Definition vtkIndent.h:29
map scalar values into colors via a lookup table
Allocate and hold a VTK object.
Definition vtkNew.h:58
void SetInputData(vtkTable *input) override
Set the input to the surface plot.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkNew< vtkPoints > Surface
Surface to render.
bool DataHasBeenRescaled
true if user-defined data scaling has already been applied, false otherwise.
void SetXRange(float min, float max)
Set the range of the input data for the X dimension.
vtkNew< vtkLookupTable > LookupTable
The lookup table used to color the surface by height (Z dimension).
float XMaximum
user-defined data ranges
~vtkPlotSurface() override
float XMinimum
user-defined data ranges
bool Paint(vtkContext2D *painter) override
Paint event for the XY plot, called whenever the chart needs to be drawn.
vtkIdType NumberOfRows
The number of rows in the input table.
void SetInputData(vtkTable *input, const vtkStdString &xName, const vtkStdString &yName, const vtkStdString &zName, const vtkStdString &colorName) override
Set the input to the surface plot.
static vtkPlotSurface * New()
float YMinimum
user-defined data ranges
vtkTable * InputTable
The input table used to generate the surface.
void RescaleData()
Change data values if SetXRange() or SetYRange() were called.
void SetInputData(vtkTable *input, vtkIdType xColumn, vtkIdType yColumn, vtkIdType zColumn) override
Set the input to the surface plot.
float ColumnToX(int columnIndex)
Map a column index to the user-specified range for the X-axis.
void GenerateSurface()
Generate a surface (for OpenGL) from our list of points.
void InsertSurfaceVertex(float *data, float value, int i, int j, int &pos)
Helper function used to setup a colored surface.
float RowToY(int rowIndex)
Map a row index to the user-specified range for the Y-axis.
void SetInputData(vtkTable *input, const vtkStdString &xName, const vtkStdString &yName, const vtkStdString &zName) override
Set the input to the surface plot.
float YMaximum
user-defined data ranges
vtkIdType NumberOfVertices
The number of vertices in the surface.
void SetYRange(float min, float max)
Set the range of the input data for the Y dimension.
vtkIdType NumberOfColumns
The number of columns in the input table.
int ColorComponents
The number of components used to color the surface.
Wrapper around std::string to keep symbols short.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:60
int vtkIdType
Definition vtkType.h:315
#define VTK_MARSHALAUTO
#define max(a, b)