VTK  9.3.1
vtkPlotPoints3D.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 
20 #ifndef vtkPlotPoints3D_h
21 #define vtkPlotPoints3D_h
22 
23 #include "vtkChartsCoreModule.h" // For export macro
24 #include "vtkPlot3D.h"
25 
26 VTK_ABI_NAMESPACE_BEGIN
27 class vtkContext2D;
28 
29 class VTKCHARTSCORE_EXPORT vtkPlotPoints3D : public vtkPlot3D
30 {
31 public:
32  vtkTypeMacro(vtkPlotPoints3D, vtkPlot3D);
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34  static vtkPlotPoints3D* New();
35 
39  bool Paint(vtkContext2D* painter) override;
40 
41 protected:
43  ~vtkPlotPoints3D() override;
44 
45  void ReleaseGraphicsCache() override;
46 
51 
56 
57 private:
58  vtkPlotPoints3D(const vtkPlotPoints3D&) = delete;
59  void operator=(const vtkPlotPoints3D&) = delete;
60 };
61 
62 VTK_ABI_NAMESPACE_END
63 #endif // vtkPlotPoints3D_h
virtual bool Paint(vtkContext2D *painter)
Paint event for the item, called whenever the item needs to be drawn.
record modification and/or execution time
Definition: vtkTimeStamp.h:24
vtkTimeStamp SelectedPointsBuildTime
The selected points.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:49
a simple class to control print indentation
Definition: vtkIndent.h:28
virtual void ReleaseGraphicsCache()
Release cache entries created by this context item.
vtkNew< vtkPoints > SelectedPoints
The selected points.
3D scatter plot.
Abstract class for 3D plots.
Definition: vtkPlot3D.h:34
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...