VTK  9.0.1
vtkTextureMapToCylinder.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTextureMapToCylinder.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
46 #ifndef vtkTextureMapToCylinder_h
47 #define vtkTextureMapToCylinder_h
48 
49 #include "vtkDataSetAlgorithm.h"
50 #include "vtkFiltersTextureModule.h" // For export macro
51 
52 class VTKFILTERSTEXTURE_EXPORT vtkTextureMapToCylinder : public vtkDataSetAlgorithm
53 {
54 public:
56  void PrintSelf(ostream& os, vtkIndent indent) override;
57 
64 
66 
69  vtkSetVector3Macro(Point1, double);
70  vtkGetVectorMacro(Point1, double, 3);
72 
74 
77  vtkSetVector3Macro(Point2, double);
78  vtkGetVectorMacro(Point2, double, 3);
80 
82 
86  vtkSetMacro(AutomaticCylinderGeneration, vtkTypeBool);
87  vtkGetMacro(AutomaticCylinderGeneration, vtkTypeBool);
88  vtkBooleanMacro(AutomaticCylinderGeneration, vtkTypeBool);
90 
92 
98  vtkSetMacro(PreventSeam, vtkTypeBool);
99  vtkGetMacro(PreventSeam, vtkTypeBool);
100  vtkBooleanMacro(PreventSeam, vtkTypeBool);
102 
103 protected:
106 
108 
109  double Point1[3];
110  double Point2[3];
113 
114 private:
116  void operator=(const vtkTextureMapToCylinder&) = delete;
117 };
118 
119 #endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate texture coordinates by mapping points to cylinder
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkTextureMapToCylinder * New()
Create object with cylinder axis parallel to z-axis (points (0,0,-0.5) and (0,0,0....
int vtkTypeBool
Definition: vtkABI.h:69