VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPlotPoints3D.h 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00015 00031 #ifndef vtkPlotPoints3D_h 00032 #define vtkPlotPoints3D_h 00033 00034 #include "vtkChartsCoreModule.h" // For export macro 00035 #include "vtkPlot3D.h" 00036 00037 class vtkContext2D; 00038 00039 class VTKCHARTSCORE_EXPORT vtkPlotPoints3D : public vtkPlot3D 00040 { 00041 public: 00042 vtkTypeMacro(vtkPlotPoints3D, vtkPlot3D); 00043 virtual void PrintSelf(ostream &os, vtkIndent indent); 00044 static vtkPlotPoints3D * New(); 00045 00048 virtual bool Paint(vtkContext2D *painter); 00049 00050 //BTX 00051 protected: 00052 vtkPlotPoints3D(); 00053 ~vtkPlotPoints3D(); 00054 00056 std::vector<vtkVector3f> SelectedPoints; 00057 00059 vtkTimeStamp SelectedPointsBuildTime; 00060 00061 private: 00062 vtkPlotPoints3D(const vtkPlotPoints3D &); // Not implemented. 00063 void operator=(const vtkPlotPoints3D &); // Not implemented. 00064 //ETX 00065 00066 }; 00067 00068 #endif //vtkPlotPoints3D_h