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