Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

Graphics/vtkTriangularTCoords.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkTriangularTCoords.h,v $
00005   Language:  C++
00006 
00007   Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 
00008   All rights reserved.
00009   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00010 
00011      This software is distributed WITHOUT ANY WARRANTY; without even 
00012      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00013      PURPOSE.  See the above copyright notice for more information.
00014 
00015 =========================================================================*/
00050 #ifndef __vtkTriangularTCoords_h
00051 #define __vtkTriangularTCoords_h
00052 
00053 #include "vtkPolyDataToPolyDataFilter.h"
00054 
00055 class VTK_GRAPHICS_EXPORT vtkTriangularTCoords : public vtkPolyDataToPolyDataFilter
00056 {
00057 public:
00058   static vtkTriangularTCoords *New();
00059   vtkTypeRevisionMacro(vtkTriangularTCoords,vtkPolyDataToPolyDataFilter);
00060   void PrintSelf(ostream& os, vtkIndent indent);
00061 
00062 protected:
00063   vtkTriangularTCoords() {};
00064   ~vtkTriangularTCoords() {};
00065 
00066   // Usual data generation method
00067   void Execute();
00068 private:
00069   vtkTriangularTCoords(const vtkTriangularTCoords&);  // Not implemented.
00070   void operator=(const vtkTriangularTCoords&);  // Not implemented.
00071 };
00072 
00073 #endif
00074 
00075