Graphics/vtkTriangularTCoords.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00049 #ifndef __vtkTriangularTCoords_h
00050 #define __vtkTriangularTCoords_h
00051
00052 #include "vtkPolyDataToPolyDataFilter.h"
00053
00054 class VTK_GRAPHICS_EXPORT vtkTriangularTCoords : public vtkPolyDataToPolyDataFilter
00055 {
00056 public:
00057 static vtkTriangularTCoords *New();
00058 vtkTypeRevisionMacro(vtkTriangularTCoords,vtkPolyDataToPolyDataFilter);
00059 void PrintSelf(ostream& os, vtkIndent indent);
00060
00061 protected:
00062 vtkTriangularTCoords() {};
00063 ~vtkTriangularTCoords() {};
00064
00065
00066 void Execute();
00067 private:
00068 vtkTriangularTCoords(const vtkTriangularTCoords&);
00069 void operator=(const vtkTriangularTCoords&);
00070 };
00071
00072 #endif
00073
00074