VTK
vtkPlotPoints3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlotPoints3D.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 vtkPlotPoints3D_h
32 #define vtkPlotPoints3D_h
33 
34 #include "vtkChartsCoreModule.h" // For export macro
35 #include "vtkPlot3D.h"
36 
37 class vtkContext2D;
38 
40 {
41 public:
42  vtkTypeMacro(vtkPlotPoints3D, vtkPlot3D);
43  virtual void PrintSelf(ostream &os, vtkIndent indent);
44  static vtkPlotPoints3D * New();
45 
48  virtual bool Paint(vtkContext2D *painter);
49 
50 //BTX
51 protected:
53  ~vtkPlotPoints3D();
54 
56  std::vector<vtkVector3f> SelectedPoints;
57 
60 
61 private:
62  vtkPlotPoints3D(const vtkPlotPoints3D &); // Not implemented.
63  void operator=(const vtkPlotPoints3D &); // Not implemented.
64 //ETX
65 
66 };
67 
68 #endif //vtkPlotPoints3D_h
virtual bool Paint(vtkContext2D *painter)
record modification and/or execution time
Definition: vtkTimeStamp.h:34
vtkTimeStamp SelectedPointsBuildTime
std::vector< vtkVector3f > SelectedPoints
virtual void PrintSelf(ostream &os, vtkIndent indent)
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:56
a simple class to control print indentation
Definition: vtkIndent.h:38
3D scatter plot.
Abstract class for 3D plots.
Definition: vtkPlot3D.h:43
static vtkObject * New()
#define VTKCHARTSCORE_EXPORT