VTK
dox/Graphics/vtkVertexGlyphFilter.h
Go to the documentation of this file.
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 "vtkPolyDataAlgorithm.h"
00040 
00041 class VTK_GRAPHICS_EXPORT vtkVertexGlyphFilter : public vtkPolyDataAlgorithm
00042 {
00043 public:
00044   vtkTypeMacro(vtkVertexGlyphFilter, vtkPolyDataAlgorithm);
00045   virtual void PrintSelf(ostream &os, vtkIndent indent);
00046   static vtkVertexGlyphFilter *New();
00047 
00048 protected:
00049   vtkVertexGlyphFilter();
00050   ~vtkVertexGlyphFilter();
00051 
00052   int RequestData(vtkInformation *,
00053                   vtkInformationVector **, vtkInformationVector *);
00054   int FillInputPortInformation(int, vtkInformation *);
00055 
00056 private:
00057   vtkVertexGlyphFilter(const vtkVertexGlyphFilter &); // Not implemented
00058   void operator=(const vtkVertexGlyphFilter &);    // Not implemented
00059 };
00060 
00061 #endif //_vtkVertexGlyphFilter_h