VTK  9.3.1
vtkSphericalHarmonics.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
15 #ifndef vtkSphericalHarmonics_h
16 #define vtkSphericalHarmonics_h
17 
18 #include "vtkFiltersGeneralModule.h" // For export macro
19 #include "vtkImageAlgorithm.h"
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class VTKFILTERSGENERAL_EXPORT vtkSphericalHarmonics : public vtkImageAlgorithm
23 {
24 public:
25  static vtkSphericalHarmonics* New();
27  void PrintSelf(ostream& os, vtkIndent indent) override;
28 
29 protected:
30  vtkSphericalHarmonics() = default;
31  ~vtkSphericalHarmonics() override = default;
32 
33  // Usual data generation method
35  int FillOutputPortInformation(int, vtkInformation*) override;
36 
37 private:
39  void operator=(const vtkSphericalHarmonics&) = delete;
40 };
41 
42 VTK_ABI_NAMESPACE_END
43 #endif
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:28
compute spherical harmonics of an equirectangular projection image
int FillOutputPortInformation(int port, vtkInformation *info) override
These method should be reimplemented by subclasses that have more than a single input or single outpu...
Generic algorithm superclass for image algs.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called in response to a REQUEST_DATA request from the executive.