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

dox/Graphics/vtkTextureMapToCylinder.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkTextureMapToCylinder.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 =========================================================================*/ 00055 #ifndef __vtkTextureMapToCylinder_h 00056 #define __vtkTextureMapToCylinder_h 00057 00058 #include "vtkDataSetToDataSetFilter.h" 00059 00060 class VTK_GRAPHICS_EXPORT vtkTextureMapToCylinder : public vtkDataSetToDataSetFilter 00061 { 00062 public: 00063 vtkTypeRevisionMacro(vtkTextureMapToCylinder,vtkDataSetToDataSetFilter); 00064 void PrintSelf(ostream& os, vtkIndent indent); 00065 00069 static vtkTextureMapToCylinder *New(); 00070 00072 00073 vtkSetVector3Macro(Point1,float); 00074 vtkGetVectorMacro(Point1,float,3); 00076 00078 00079 vtkSetVector3Macro(Point2,float); 00080 vtkGetVectorMacro(Point2,float,3); 00082 00084 00086 vtkSetMacro(AutomaticCylinderGeneration,int); 00087 vtkGetMacro(AutomaticCylinderGeneration,int); 00088 vtkBooleanMacro(AutomaticCylinderGeneration,int); 00090 00092 00096 vtkSetMacro(PreventSeam,int); 00097 vtkGetMacro(PreventSeam,int); 00098 vtkBooleanMacro(PreventSeam,int); 00100 00101 protected: 00102 vtkTextureMapToCylinder(); 00103 ~vtkTextureMapToCylinder() {}; 00104 00105 void Execute(); 00106 00107 float Point1[3]; 00108 float Point2[3]; 00109 int AutomaticCylinderGeneration; 00110 int PreventSeam; 00111 00112 private: 00113 vtkTextureMapToCylinder(const vtkTextureMapToCylinder&); // Not implemented. 00114 void operator=(const vtkTextureMapToCylinder&); // Not implemented. 00115 }; 00116 00117 #endif 00118 00119