00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkVertexGlyphFilter.h,v $ 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 ----------------------------------------------------------------------------*/ 00032 #ifndef _vtkVertexGlyphFilter_h 00033 #define _vtkVertexGlyphFilter_h 00034 00035 #include "vtkPolyDataAlgorithm.h" 00036 00037 class VTK_GRAPHICS_EXPORT vtkVertexGlyphFilter : public vtkPolyDataAlgorithm 00038 { 00039 public: 00040 vtkTypeRevisionMacro(vtkVertexGlyphFilter, vtkPolyDataAlgorithm); 00041 virtual void PrintSelf(ostream &os, vtkIndent indent); 00042 static vtkVertexGlyphFilter *New(); 00043 00044 protected: 00045 vtkVertexGlyphFilter(); 00046 ~vtkVertexGlyphFilter(); 00047 00048 int RequestData(vtkInformation *, 00049 vtkInformationVector **, vtkInformationVector *); 00050 int FillInputPortInformation(int, vtkInformation *); 00051 00052 private: 00053 vtkVertexGlyphFilter(const vtkVertexGlyphFilter &); // Not implemented 00054 void operator=(const vtkVertexGlyphFilter &); // Not implemented 00055 }; 00056 00057 #endif //_vtkVertexGlyphFilter_h