VTK  9.4.20250102
vtkLookupTableItem.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
3
4#ifndef vtkLookupTableItem_h
5#define vtkLookupTableItem_h
6
7#include "vtkChartsCoreModule.h" // For export macro
9#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
10
11VTK_ABI_NAMESPACE_BEGIN
12class vtkLookupTable;
13
14// Description:
15// vtkPlot::Color, vtkPlot::Brush, vtkScalarsToColors::DrawPolyLine,
16// vtkScalarsToColors::MaskAboveCurve have no effect here.
18{
19public:
22 void PrintSelf(ostream& os, vtkIndent indent) override;
23
25 vtkGetObjectMacro(LookupTable, vtkLookupTable);
26
27protected:
30
31 // Description:
32 // Reimplemented to return the range of the lookup table
33 void ComputeBounds(double bounds[4]) override;
34
35 void ComputeTexture() override;
37
38private:
40 void operator=(const vtkLookupTableItem&) = delete;
41};
42
43VTK_ABI_NAMESPACE_END
44#endif
a simple class to control print indentation
Definition vtkIndent.h:108
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void ComputeTexture() override
Need to be reimplemented by subclasses, ComputeTexture() is called at paint time if the texture is no...
void SetLookupTable(vtkLookupTable *t)
static vtkLookupTableItem * New()
void ComputeBounds(double bounds[4]) override
vtkLookupTable * LookupTable
~vtkLookupTableItem() override
map scalar values into colors via a lookup table
Abstract class for ScalarsToColors items.
#define VTK_MARSHALAUTO