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

Returns min and max for integer data type, if available.

Namespace: OIV.LDM.Readers
Assembly: OIV.LDM (in OIV.LDM.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public virtual bool GetMinMax(
	out long min,
	out long max
)

Parameters

min
Type: SystemInt64
max
Type: SystemInt64

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