Click or drag to resize
SoVolumeReaderGetMinMax Method (Double, Double)

Returns min max for float data type, if available.

Namespace: OIV.LDM.Readers
Assembly: OIV.LDM (in OIV.LDM.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public virtual bool GetMinMax(
	out double min,
	out double max
)

Parameters

min
Type: SystemDouble
max
Type: SystemDouble

Return Value

Type: Boolean
Remarks

If not available, return false. The reader should implement this method if possible, because applications often query these values to setup their OIV.LDM.Nodes.SoDataRange node. If this method is not implemented, and the application calls OIV.VolumeViz.Nodes.SoVolumeData.GetMinMax(System.Int64@, System.Int64@) is called, then VolumeViz must load every tile to compute the volume min and max. This can cause a long delay.

See Also