VTK  9.2.6
vtkPTextureMapToSphere.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPTextureMapToSphere.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 =========================================================================*/
31 #ifndef vtkPTextureMapToSphere_h
32 #define vtkPTextureMapToSphere_h
33 
34 #include "vtkFiltersParallelModule.h" // For export macro
35 #include "vtkTextureMapToSphere.h"
36 
37 class vtkDataSet;
39 
40 class VTKFILTERSPARALLEL_EXPORT vtkPTextureMapToSphere : public vtkTextureMapToSphere
41 {
42 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
46  static vtkPTextureMapToSphere* New();
47 
48 protected:
50  ~vtkPTextureMapToSphere() override;
51 
52  void ComputeCenter(vtkDataSet* dataSet) override;
53 
54  void SetController(vtkMultiProcessController*);
56 
57 private:
59  void operator=(const vtkPTextureMapToSphere&) = delete;
60 };
61 
62 #endif
vtkMultiProcessController * Controller
abstract class to specify dataset behavior
Definition: vtkDataSet.h:62
virtual void ComputeCenter(vtkDataSet *input)
generate texture coordinates by mapping points to sphere
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
generate texture coordinates by mapping points to sphere
static vtkTextureMapToSphere * New()
Create object with Center (0,0,0) and the PreventSeam ivar is set to true.
Multiprocessing communication superclass.