VTK
dox/Filters/Texture/vtkTriangularTCoords.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkTriangularTCoords.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 =========================================================================*/
00034 #ifndef __vtkTriangularTCoords_h
00035 #define __vtkTriangularTCoords_h
00036 
00037 #include "vtkFiltersTextureModule.h" // For export macro
00038 #include "vtkPolyDataAlgorithm.h"
00039 
00040 class VTKFILTERSTEXTURE_EXPORT vtkTriangularTCoords : public vtkPolyDataAlgorithm
00041 {
00042 public:
00043   static vtkTriangularTCoords *New();
00044   vtkTypeMacro(vtkTriangularTCoords,vtkPolyDataAlgorithm);
00045   void PrintSelf(ostream& os, vtkIndent indent);
00046 
00047 protected:
00048   vtkTriangularTCoords() {};
00049   ~vtkTriangularTCoords() {};
00050 
00051   // Usual data generation method
00052   int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
00053 private:
00054   vtkTriangularTCoords(const vtkTriangularTCoords&);  // Not implemented.
00055   void operator=(const vtkTriangularTCoords&);  // Not implemented.
00056 };
00057 
00058 #endif