VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkFrustumSource.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 =========================================================================*/ 00031 #ifndef __vtkFrustumSource_h 00032 #define __vtkFrustumSource_h 00033 00034 #include "vtkFiltersSourcesModule.h" // For export macro 00035 #include "vtkPolyDataAlgorithm.h" 00036 class vtkPlanes; 00037 00038 class VTKFILTERSSOURCES_EXPORT vtkFrustumSource : public vtkPolyDataAlgorithm 00039 { 00040 public: 00041 static vtkFrustumSource *New(); 00042 vtkTypeMacro(vtkFrustumSource,vtkPolyDataAlgorithm); 00043 void PrintSelf(ostream& os, vtkIndent indent); 00044 00046 00051 vtkGetObjectMacro(Planes,vtkPlanes); 00053 00055 virtual void SetPlanes(vtkPlanes *planes); 00056 00058 00059 vtkGetMacro(ShowLines,bool); 00060 vtkSetMacro(ShowLines,bool); 00061 vtkBooleanMacro(ShowLines,bool); 00063 00065 00067 vtkGetMacro(LinesLength,double); 00068 vtkSetMacro(LinesLength,double); 00070 00072 unsigned long GetMTime(); 00073 00074 protected: 00076 vtkFrustumSource(); 00077 00078 virtual ~vtkFrustumSource(); 00079 00080 virtual int RequestData(vtkInformation *request, 00081 vtkInformationVector **inputVector, 00082 vtkInformationVector *outputVector); 00083 00085 00086 void ComputePoint(int planes[3], 00087 double *pt); 00089 00090 vtkPlanes *Planes; 00091 bool ShowLines; 00092 double LinesLength; 00093 00094 private: 00095 vtkFrustumSource(const vtkFrustumSource&); // Not implemented. 00096 void operator=(const vtkFrustumSource&); // Not implemented. 00097 }; 00098 00099 #endif