SoVRSegyFileReaderSetInputDataRange Method |
Requests that the input be converted from the specified range to the range depending on the output data type.
Namespace: OIV.VolumeViz.ReadersAssembly: OIV.VolumeViz (in OIV.VolumeViz.dll) Version: 2024.2.0.0 (2024.2.0)
Syntax public override bool SetInputDataRange(
bool doChange,
double min,
double max
)
Public Overrides Function SetInputDataRange (
doChange As Boolean,
min As Double,
max As Double
) As Boolean
public:
virtual bool SetInputDataRange(
bool doChange,
double min,
double max
) override
abstract SetInputDataRange :
doChange : bool *
min : float *
max : float -> bool
override SetInputDataRange :
doChange : bool *
min : float *
max : float -> bool
Parameters
- doChange
- Type: SystemBoolean
- min
- Type: SystemDouble
- max
- Type: SystemDouble
Return Value
Type:
BooleanRemarks This allows, for instance, if the output data type is unsigned byte, conversion of float data from range [min,max] to range [0,255]. If doChange is false no range conversion is applied. Always returns true.
See Also