VTK  9.4.20250509
vtkImageMapToRGBA.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
17#ifndef vtkImageMapToRGBA_h
18#define vtkImageMapToRGBA_h
19
20#include "vtkImageMapToColors.h"
21#include "vtkImagingColorModule.h" // For export macro
22
23VTK_ABI_NAMESPACE_BEGIN
24class VTKIMAGINGCOLOR_EXPORT vtkImageMapToRGBA : public vtkImageMapToColors
25{
26public:
29 void PrintSelf(ostream& os, vtkIndent indent) override;
30
31protected:
32 vtkImageMapToRGBA() = default;
33 ~vtkImageMapToRGBA() override = default;
34
35private:
36 vtkImageMapToRGBA(const vtkImageMapToRGBA&) = delete;
37 void operator=(const vtkImageMapToRGBA&) = delete;
38};
39
40VTK_ABI_NAMESPACE_END
41#endif
map the input image through a lookup table
map the input image through a lookup table
~vtkImageMapToRGBA() override=default
static vtkImageMapToRGBA * New()
vtkImageMapToRGBA()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition vtkIndent.h:108