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.
nmWTAI-Platform/3rd/VTK7.1/include/vtkPiecewiseFunctionShiftSc...

65 lines
1.9 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkPiecewiseFunctionShiftScale.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.
=========================================================================*/
/**
* @class vtkPiecewiseFunctionShiftScale
*
*
*/
#ifndef vtkPiecewiseFunctionShiftScale_h
#define vtkPiecewiseFunctionShiftScale_h
#include "vtkCommonExecutionModelModule.h" // For export macro
#include "vtkPiecewiseFunctionAlgorithm.h"
class vtkPiecewiseFunction;
class VTKCOMMONEXECUTIONMODEL_EXPORT vtkPiecewiseFunctionShiftScale : public vtkPiecewiseFunctionAlgorithm
{
public:
static vtkPiecewiseFunctionShiftScale *New();
vtkTypeMacro(vtkPiecewiseFunctionShiftScale, vtkPiecewiseFunctionAlgorithm);
void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
vtkSetMacro(PositionShift, double);
vtkSetMacro(PositionScale, double);
vtkSetMacro(ValueShift, double);
vtkSetMacro(ValueScale, double);
vtkGetMacro(PositionShift, double);
vtkGetMacro(PositionScale, double);
vtkGetMacro(ValueShift, double);
vtkGetMacro(ValueScale, double);
protected:
vtkPiecewiseFunctionShiftScale();
~vtkPiecewiseFunctionShiftScale() VTK_OVERRIDE;
int RequestData(vtkInformation *, vtkInformationVector **,
vtkInformationVector *) VTK_OVERRIDE;
double PositionShift;
double PositionScale;
double ValueShift;
double ValueScale;
private:
vtkPiecewiseFunctionShiftScale(const vtkPiecewiseFunctionShiftScale&) VTK_DELETE_FUNCTION;
void operator=(const vtkPiecewiseFunctionShiftScale&) VTK_DELETE_FUNCTION;
};
#endif