VTK  9.1.0
vtkPlotLine3D.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPlotLine3D.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15
40#ifndef vtkPlotLine3D_h
41#define vtkPlotLine3D_h
42
43#include "vtkChartsCoreModule.h" // For export macro
44#include "vtkPlotPoints3D.h"
45
46class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D
47{
48public:
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
55 static vtkPlotLine3D* New();
56
60 bool Paint(vtkContext2D* painter) override;
61
62protected:
64 ~vtkPlotLine3D() override;
65
66private:
67 vtkPlotLine3D(const vtkPlotLine3D&) = delete;
68 void operator=(const vtkPlotLine3D&) = delete;
69};
70
71#endif // vtkPlotLine3D_h
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:63
a simple class to control print indentation
Definition: vtkIndent.h:43
Class for drawing an XYZ line plot given three columns from a vtkTable.
Definition: vtkPlotLine3D.h:47
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.
~vtkPlotLine3D() override
static vtkPlotLine3D * New()
Creates a 3D Chart object.
3D scatter plot.