You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.6 KiB
C
51 lines
1.6 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkOpenGLVolumeRGBTable.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
|
||
|
#ifndef vtkOpenGLVolumeRGBTable_h
|
||
|
#define vtkOpenGLVolumeRGBTable_h
|
||
|
#ifndef __VTK_WRAP__
|
||
|
|
||
|
#include "vtkOpenGLVolumeLookupTable.h"
|
||
|
|
||
|
// Forward declarations
|
||
|
class vtkOpenGLRenderWindow;
|
||
|
|
||
|
//----------------------------------------------------------------------------
|
||
|
class vtkOpenGLVolumeRGBTable : public vtkOpenGLVolumeLookupTable
|
||
|
{
|
||
|
public:
|
||
|
vtkTypeMacro(vtkOpenGLVolumeRGBTable, vtkOpenGLVolumeLookupTable);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
static vtkOpenGLVolumeRGBTable* New();
|
||
|
|
||
|
protected:
|
||
|
vtkOpenGLVolumeRGBTable();
|
||
|
|
||
|
/**
|
||
|
* Update the internal texture object using the color transfer function
|
||
|
*/
|
||
|
void InternalUpdate(vtkObject* func, int blendMode, double sampleDistance, double unitDistance,
|
||
|
int filterValue) override;
|
||
|
|
||
|
private:
|
||
|
vtkOpenGLVolumeRGBTable(const vtkOpenGLVolumeRGBTable&) = delete;
|
||
|
vtkOpenGLVolumeRGBTable& operator=(const vtkOpenGLVolumeRGBTable&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif // __VTK_WRAP__
|
||
|
#endif // vtkOpenGLVolumeRGBTable_h
|
||
|
// VTK-HeaderTest-Exclude: vtkOpenGLVolumeRGBTable.h
|