VTK  9.4.20251007
vtkPlotPoints.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
23
24#ifndef vtkPlotPoints_h
25#define vtkPlotPoints_h
26
27#include "vtkChartsCoreModule.h" // For export macro
28#include "vtkNew.h" // For ivars
29#include "vtkPlot.h"
30#include "vtkRenderingCoreEnums.h" // For marker enum
31#include "vtkScalarsToColors.h" // For VTK_COLOR_MODE_DEFAULT and _MAP_SCALARS
32#include "vtkStdString.h" // For color array name
33#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
34
35VTK_ABI_NAMESPACE_BEGIN
36class vtkCharArray;
37class vtkContext2D;
38class vtkTable;
39class vtkPoints2D;
40class vtkFloatArray;
41class vtkImageData;
44
45class VTKCHARTSCORE_EXPORT VTK_MARSHALAUTO vtkPlotPoints : public vtkPlot
46{
47public:
48 vtkTypeMacro(vtkPlotPoints, vtkPlot);
49 void PrintSelf(ostream& os, vtkIndent indent) override;
50
54 static vtkPlotPoints* New();
55
59 bool Paint(vtkContext2D* painter) override;
60
67 bool PaintLegend(vtkContext2D* painter, const vtkRectf& rect, int legendIndex) override;
68
72 void GetBounds(double bounds[4]) override;
73
77 void GetUnscaledInputBounds(double bounds[4]) override;
78
80
86
92
94
99 vtkBooleanMacro(ScalarVisibility, vtkTypeBool);
101
103
109 void SelectColorArray(const vtkStdString& arrayName);
111
116
122 vtkIdType GetNearestPoint(const vtkVector2f& point, const vtkVector2f& tolerance,
123 vtkVector2f* location, vtkIdType* segmentId) override;
125
129 bool SelectPoints(const vtkVector2f& min, const vtkVector2f& max) override;
130
134 bool SelectPointsInPolygon(const vtkContextPolygon& polygon) override;
135
139 enum
140 {
147 };
148
150
154 vtkGetMacro(MarkerStyle, int);
155 vtkSetMacro(MarkerStyle, int);
157
159
163 vtkGetMacro(MarkerSize, float);
164 vtkSetMacro(MarkerSize, float);
166
168
174
181 bool UpdateCache() override;
182
183 void ReleaseGraphicsCache() override;
184
185protected:
187 ~vtkPlotPoints() override;
188
192 bool GetDataArrays(vtkTable* table, vtkDataArray* array[2]);
193
197 bool CacheRequiresUpdate() override;
198
203
209
216
220 void CalculateBounds(double bounds[4]);
221
226
228
234
236
239 class VectorPIMPL;
240 VectorPIMPL* Sorted;
242
248
254
259
261
267
268 bool LogX, LogY;
269
271
279
284
285private:
286 vtkPlotPoints(const vtkPlotPoints&) = delete;
287 void operator=(const vtkPlotPoints&) = delete;
288};
289
290VTK_ABI_NAMESPACE_END
291#endif // vtkPlotPoints_h
dynamic, self-adjusting array of char
Class for drawing 2D primitives to a graphical context.
dynamic, self-adjusting array of float
dynamic, self-adjusting array of vtkIdType
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:29
Allocate and hold a VTK object.
Definition vtkNew.h:58
void CalculateLogSeries()
Handle calculating the log of the x or y series if necessary.
int MarkerStyle
The marker style that should be used.
virtual void CreateDefaultLookupTable()
Create default lookup table.
void GetUnscaledInputBounds(double bounds[4]) override
Get the non-log-scaled bounds on chart inputs for this plot as (Xmin, Xmax, Ymin, Ymax).
void SelectColorArray(const vtkStdString &arrayName)
When ScalarMode is set to UsePointFieldData or UseCellFieldData, you can specify which array to use f...
void CalculateUnscaledInputBounds()
Calculate the unscaled input bounds from the input arrays.
float MarkerSize
The marker style that should be used.
void ReleaseGraphicsCache() override
Release cache entries created by this context item.
void FindBadPoints()
Find all of the "bad points" in the series.
bool GetDataArrays(vtkTable *table, vtkDataArray *array[2])
Populate the data arrays ready to operate on input data.
bool PaintLegend(vtkContext2D *painter, const vtkRectf &rect, int legendIndex) override
Paint legend event for the XY plot, called whenever the legend needs the plot items symbol/mark/line ...
vtkTypeBool ScalarVisibility
Lookup Table for coloring points by scalar value.
vtkStdString ColorArrayName
Lookup Table for coloring points by scalar value.
bool UpdateCache() override
Update the internal cache.
void GetBounds(double bounds[4]) override
Get the bounds for this plot as (Xmin, Xmax, Ymin, Ymax).
~vtkPlotPoints() override
void SetLookupTable(vtkScalarsToColors *lut)
Specify a lookup table for the mapper to use.
vtkIdTypeArray * BadPoints
An array containing the indices of all the "bad points", meaning any x, y pair that has an infinity,...
bool SelectPoints(const vtkVector2f &min, const vtkVector2f &max) override
Select all points in the specified rectangle.
void SelectColorArray(vtkIdType arrayNum)
When ScalarMode is set to UsePointFieldData or UseCellFieldData, you can specify which array to use f...
vtkUnsignedCharArray * Colors
Lookup Table for coloring points by scalar value.
bool CacheRequiresUpdate() override
Test if the internal cache requires an update.
double UnscaledInputBounds[4]
Cached bounds on the plot input axes.
vtkPoints2D * Points
Store a well packed set of XY coordinates for this data series.
VectorPIMPL * Sorted
vtkStdString ValidPointMaskName
Name of the valid point mask array.
bool Paint(vtkContext2D *painter) override
Paint event for the XY plot, called whenever the chart needs to be drawn.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void CalculateBounds(double bounds[4])
Calculate the bounds of the plot, ignoring the bad points.
bool SelectPointsInPolygon(const vtkContextPolygon &polygon) override
Select all points in the specified polygon.
vtkNew< vtkFloatArray > SelectedPoints
Store a well packed set of XY coordinates for this data series.
void CreateSortedPoints()
Create the sorted point list if necessary.
vtkCharArray * ValidPointMask
Array which marks valid points in the array.
static vtkPlotPoints * New()
Creates a 2D Chart object.
vtkStdString GetColorArrayName()
Get the array name to color by.
vtkIdType GetNearestPoint(const vtkVector2f &point, const vtkVector2f &tolerance, vtkVector2f *location, vtkIdType *segmentId) override
Function to query a plot for the nearest point to the specified coordinate.
vtkScalarsToColors * LookupTable
Lookup Table for coloring points by scalar value.
vtkScalarsToColors * GetLookupTable()
Specify a lookup table for the mapper to use.
virtual vtkIdType GetNearestPoint(const vtkVector2f &point, const vtkVector2f &tolerance, vtkVector2f *location, vtkIdType *segmentId)
Function to query a plot for the nearest point to the specified coordinate.
represent and manipulate 2D points
Definition vtkPoints2D.h:27
Superclass for mapping scalar values to colors.
Wrapper around std::string to keep symbols short.
A table, which contains similar-typed columns of data.
Definition vtkTable.h:60
dynamic, self-adjusting array of unsigned char
int vtkTypeBool
Definition vtkABI.h:64
#define vtkDataArray
@ VTK_MARKER_DIAMOND
@ VTK_MARKER_SQUARE
@ VTK_MARKER_PLUS
@ VTK_MARKER_CROSS
@ VTK_MARKER_CIRCLE
@ VTK_MARKER_NONE
int vtkIdType
Definition vtkType.h:315
#define VTK_MARSHALAUTO
#define max(a, b)