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 
34 #ifndef vtkPlotLine3D_h
35 #define vtkPlotLine3D_h
36 
37 #include "vtkChartsCoreModule.h" // For export macro
38 #include "vtkPlotPoints3D.h"
39 
40 class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D
41 {
42 public:
44  virtual void PrintSelf(ostream &os, vtkIndent indent);
45 
49  static vtkPlotLine3D *New();
50 
54  virtual bool Paint(vtkContext2D *painter);
55 
56 protected:
59 
60 private:
61  vtkPlotLine3D(const vtkPlotLine3D &) VTK_DELETE_FUNCTION;
62  void operator=(const vtkPlotLine3D &) VTK_DELETE_FUNCTION;
63 
64 };
65 
66 #endif //vtkPlotLine3D_h
vtkPlotLine3D::Paint
virtual bool Paint(vtkContext2D *painter)
Paint event for the XYZ plot, called whenever the chart needs to be drawn.
vtkPlotPoints3D.h
vtkContext2D
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:58
vtkPlotLine3D::~vtkPlotLine3D
~vtkPlotLine3D()
vtkPlotLine3D
Class for drawing an XYZ line plot given three columns from a vtkTable.
Definition: vtkPlotLine3D.h:41
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:40
vtkPlotLine3D::New
static vtkPlotLine3D * New()
Creates a 3D Chart object.
vtkPlotLine3D::PrintSelf
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
vtkPlotLine3D::vtkPlotLine3D
vtkPlotLine3D()
vtkPlotPoints3D
3D scatter plot.
Definition: vtkPlotPoints3D.h:41