VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkVertexGlyphFilter.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 /*---------------------------------------------------------------------------- 00016 Copyright (c) Sandia Corporation 00017 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. 00018 ----------------------------------------------------------------------------*/ 00036 #ifndef _vtkVertexGlyphFilter_h 00037 #define _vtkVertexGlyphFilter_h 00038 00039 #include "vtkFiltersGeneralModule.h" // For export macro 00040 #include "vtkPolyDataAlgorithm.h" 00041 00042 class VTKFILTERSGENERAL_EXPORT vtkVertexGlyphFilter : public vtkPolyDataAlgorithm 00043 { 00044 public: 00045 vtkTypeMacro(vtkVertexGlyphFilter, vtkPolyDataAlgorithm); 00046 virtual void PrintSelf(ostream &os, vtkIndent indent); 00047 static vtkVertexGlyphFilter *New(); 00048 00049 protected: 00050 vtkVertexGlyphFilter(); 00051 ~vtkVertexGlyphFilter(); 00052 00053 int RequestData(vtkInformation *, 00054 vtkInformationVector **, vtkInformationVector *); 00055 int FillInputPortInformation(int, vtkInformation *); 00056 00057 private: 00058 vtkVertexGlyphFilter(const vtkVertexGlyphFilter &); // Not implemented 00059 void operator=(const vtkVertexGlyphFilter &); // Not implemented 00060 }; 00061 00062 #endif //_vtkVertexGlyphFilter_h