VTK  9.3.1
vtkPlotLine3D.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 
22 #ifndef vtkPlotLine3D_h
23 #define vtkPlotLine3D_h
24 
25 #include "vtkChartsCoreModule.h" // For export macro
26 #include "vtkPlotPoints3D.h"
27 
28 VTK_ABI_NAMESPACE_BEGIN
29 class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D
30 {
31 public:
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
38  static vtkPlotLine3D* New();
39 
43  bool Paint(vtkContext2D* painter) override;
44 
45 protected:
46  vtkPlotLine3D();
47  ~vtkPlotLine3D() override;
48 
49 private:
50  vtkPlotLine3D(const vtkPlotLine3D&) = delete;
51  void operator=(const vtkPlotLine3D&) = delete;
52 };
53 
54 VTK_ABI_NAMESPACE_END
55 #endif // vtkPlotLine3D_h
static vtkPlotPoints3D * New()
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:49
a simple class to control print indentation
Definition: vtkIndent.h:28
Class for drawing an XYZ line plot given three columns from a vtkTable.
Definition: vtkPlotLine3D.h:29
3D scatter plot.
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.