VTK  9.3.20240417
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 
41 #ifndef vtkPlotLine3D_h
42 #define vtkPlotLine3D_h
43 
44 #include "vtkChartsCoreModule.h" // For export macro
45 #include "vtkPlotPoints3D.h"
46 
47 VTK_ABI_NAMESPACE_BEGIN
48 class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D
49 {
50 public:
52  void PrintSelf(ostream& os, vtkIndent indent) override;
53 
57  static vtkPlotLine3D* New();
58 
62  bool Paint(vtkContext2D* painter) override;
63 
64 protected:
66  ~vtkPlotLine3D() override;
67 
68 private:
69  vtkPlotLine3D(const vtkPlotLine3D&) = delete;
70  void operator=(const vtkPlotLine3D&) = delete;
71 };
72 
73 VTK_ABI_NAMESPACE_END
74 #endif // vtkPlotLine3D_h
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:69
a simple class to control print indentation
Definition: vtkIndent.h:108
Class for drawing an XYZ line plot given three columns from a vtkTable.
Definition: vtkPlotLine3D.h:49
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
bool Paint(vtkContext2D *painter) override
Paint event for the XYZ plot, called whenever the chart needs to be drawn.
static vtkPlotLine3D * New()
Creates a 3D Chart object.
~vtkPlotLine3D() override
3D scatter plot.