VTK  9.3.20240425
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
35#ifndef vtkPlotSurface_h
36#define vtkPlotSurface_h
37
38#include "vtkChartsCoreModule.h" // For export macro
39#include "vtkNew.h" // For vtkNew ivar
40#include "vtkPlot3D.h"
41
42VTK_ABI_NAMESPACE_BEGIN
43class vtkContext2D;
44class vtkLookupTable;
45class vtkTable;
46
47class VTKCHARTSCORE_EXPORT vtkPlotSurface : public vtkPlot3D
48{
49public:
50 vtkTypeMacro(vtkPlotSurface, vtkPlot3D);
51 void PrintSelf(ostream& os, vtkIndent indent) override;
53
57 bool Paint(vtkContext2D* painter) override;
58
62 void SetInputData(vtkTable* input) override;
63
65
70 void SetInputData(vtkTable* input, const vtkStdString& xName, const vtkStdString& yName,
71 const vtkStdString& zName) override;
72 void SetInputData(vtkTable* input, const vtkStdString& xName, const vtkStdString& yName,
73 const vtkStdString& zName, const vtkStdString& colorName) override;
75 vtkTable* input, vtkIdType xColumn, vtkIdType yColumn, vtkIdType zColumn) override;
77
84 void SetXRange(float min, float max);
85
92 void SetYRange(float min, float max);
93
94protected:
96 ~vtkPlotSurface() override;
97
102
106 void InsertSurfaceVertex(float* data, float value, int i, int j, int& pos);
107
112
116 float ColumnToX(int columnIndex);
117
121 float RowToY(int rowIndex);
122
127
132
137
142
147
152
157
159
162 float XMinimum;
163 float XMaximum;
164 float YMinimum;
165 float YMaximum;
167
173
174private:
175 vtkPlotSurface(const vtkPlotSurface&) = delete;
176 void operator=(const vtkPlotSurface&) = delete;
177};
178
179VTK_ABI_NAMESPACE_END
180#endif // vtkPlotSurface_h
Class for drawing 2D primitives to a graphical context.
a simple class to control print indentation
Definition vtkIndent.h:108
map scalar values into colors via a lookup table
Allocate and hold a VTK object.
Definition vtkNew.h:160
Abstract class for 3D plots.
Definition vtkPlot3D.h:35
3D surface plot.
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:168
int vtkIdType
Definition vtkType.h:315
#define max(a, b)