VTK
vtkTextureMapToSphere.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkTextureMapToSphere.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 =========================================================================*/
44 #ifndef vtkTextureMapToSphere_h
45 #define vtkTextureMapToSphere_h
46 
47 #include "vtkFiltersTextureModule.h" // For export macro
48 #include "vtkDataSetAlgorithm.h"
49 
50 class VTKFILTERSTEXTURE_EXPORT vtkTextureMapToSphere : public vtkDataSetAlgorithm
51 {
52 public:
54  void PrintSelf(ostream& os, vtkIndent indent) override;
55 
60  static vtkTextureMapToSphere *New();
61 
63 
66  vtkSetVector3Macro(Center,double);
67  vtkGetVectorMacro(Center,double,3);
69 
71 
75  vtkSetMacro(AutomaticSphereGeneration,vtkTypeBool);
76  vtkGetMacro(AutomaticSphereGeneration,vtkTypeBool);
77  vtkBooleanMacro(AutomaticSphereGeneration,vtkTypeBool);
79 
81 
87  vtkSetMacro(PreventSeam,vtkTypeBool);
88  vtkGetMacro(PreventSeam,vtkTypeBool);
89  vtkBooleanMacro(PreventSeam,vtkTypeBool);
91 
92 protected:
94  ~vtkTextureMapToSphere() override {}
95 
97 
98  double Center[3];
101 
102 private:
104  void operator=(const vtkTextureMapToSphere&) = delete;
105 };
106 
107 #endif
108 
109 
vtkTextureMapToSphere::PreventSeam
vtkTypeBool PreventSeam
Definition: vtkTextureMapToSphere.h:100
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkDataSetAlgorithm::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Definition: vtkDataSetAlgorithm.h:180
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:48
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkDataSetAlgorithm::New
static vtkDataSetAlgorithm * New()
vtkTextureMapToSphere::AutomaticSphereGeneration
vtkTypeBool AutomaticSphereGeneration
Definition: vtkTextureMapToSphere.h:99
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkDataSetAlgorithm.h
vtkDataSetAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkTextureMapToSphere::~vtkTextureMapToSphere
~vtkTextureMapToSphere() override
Definition: vtkTextureMapToSphere.h:94
vtkTextureMapToSphere
generate texture coordinates by mapping points to sphere
Definition: vtkTextureMapToSphere.h:50
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69