VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkPlotLine3D.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 00033 #ifndef __vtkPlotLine3D_h 00034 #define __vtkPlotLine3D_h 00035 00036 #include "vtkChartsCoreModule.h" // For export macro 00037 #include "vtkPlotPoints3D.h" 00038 00039 class VTKCHARTSCORE_EXPORT vtkPlotLine3D : public vtkPlotPoints3D 00040 { 00041 public: 00042 vtkTypeMacro(vtkPlotLine3D, vtkPlotPoints3D); 00043 virtual void PrintSelf(ostream &os, vtkIndent indent); 00044 00046 static vtkPlotLine3D *New(); 00047 00050 virtual bool Paint(vtkContext2D *painter); 00051 00052 //BTX 00053 protected: 00054 vtkPlotLine3D(); 00055 ~vtkPlotLine3D(); 00056 00057 private: 00058 vtkPlotLine3D(const vtkPlotLine3D &); // Not implemented. 00059 void operator=(const vtkPlotLine3D &); // Not implemented. 00060 00061 //ETX 00062 }; 00063 00064 #endif //__vtkPlotLine3D_h