VTK
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 
31 #ifndef vtkPlotLine3D_h
32 #define vtkPlotLine3D_h
33 
34 #include "vtkChartsCoreModule.h" // For export macro
35 #include "vtkPlotPoints3D.h"
36 
37 class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D
38 {
39 public:
41  void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE;
42 
46  static vtkPlotLine3D *New();
47 
51  bool Paint(vtkContext2D *painter) VTK_OVERRIDE;
52 
53 protected:
54  vtkPlotLine3D();
55  ~vtkPlotLine3D() VTK_OVERRIDE;
56 
57 private:
58  vtkPlotLine3D(const vtkPlotLine3D &) VTK_DELETE_FUNCTION;
59  void operator=(const vtkPlotLine3D &) VTK_DELETE_FUNCTION;
60 
61 };
62 
63 #endif //vtkPlotLine3D_h
static vtkPlotPoints3D * New()
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:52
a simple class to control print indentation
Definition: vtkIndent.h:33
Class for drawing an XYZ line plot given three columns from a vtkTable.
Definition: vtkPlotLine3D.h:37
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.