VTK  9.5.20250807
vtkLogLookupTable.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
36#ifndef vtkLogLookupTable_h
37#define vtkLogLookupTable_h
38
39#include "vtkLookupTable.h"
40#include "vtkRenderingCoreModule.h" // For export macro
41#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
42
43VTK_ABI_NAMESPACE_BEGIN
44class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkLogLookupTable : public vtkLookupTable
45{
46public:
48
50 void PrintSelf(ostream& os, vtkIndent indent) override;
51
52protected:
53 vtkLogLookupTable(int sze = 256, int ext = 256);
54 ~vtkLogLookupTable() override = default;
55
56private:
57 vtkLogLookupTable(const vtkLogLookupTable&) = delete;
58 void operator=(const vtkLogLookupTable&) = delete;
59};
60
61VTK_ABI_NAMESPACE_END
62#endif
a simple class to control print indentation
Definition vtkIndent.h:108
map scalars into colors using log (base 10) scale
vtkLogLookupTable(int sze=256, int ext=256)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkLogLookupTable * New()
~vtkLogLookupTable() override=default
map scalar values into colors via a lookup table
#define VTK_MARSHALAUTO