vtkTriangularTCoords.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00038 #ifndef __vtkTriangularTCoords_h
00039 #define __vtkTriangularTCoords_h
00040
00041 #include "vtkPolyDataToPolyDataFilter.h"
00042
00043 class VTK_GRAPHICS_EXPORT vtkTriangularTCoords : public vtkPolyDataToPolyDataFilter
00044 {
00045 public:
00046 static vtkTriangularTCoords *New();
00047 vtkTypeRevisionMacro(vtkTriangularTCoords,vtkPolyDataToPolyDataFilter);
00048 void PrintSelf(ostream& os, vtkIndent indent);
00049
00050 protected:
00051 vtkTriangularTCoords() {};
00052 ~vtkTriangularTCoords() {};
00053
00054
00055 void Execute();
00056 private:
00057 vtkTriangularTCoords(const vtkTriangularTCoords&);
00058 void operator=(const vtkTriangularTCoords&);
00059 };
00060
00061 #endif
00062
00063