Click or drag to resize

BitReaderReadRangedDouble Method

[This is preliminary documentation and is subject to change.]

read a double-precision floating point value from the stream. The value is between (inclusive) the minValue and maxValue.

Namespace:  MLAPI.Serialization
Assembly:  MLAPI (in MLAPI.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public double ReadRangedDouble(
	double minValue,
	double maxValue,
	int bytes
)
Request Example View Source

Parameters

minValue
Type: SystemDouble
Minimum value that this value could be
maxValue
Type: SystemDouble
Maximum possible value that this could be
bytes
Type: SystemInt32
How many bytes the compressed value occupies. Must be between 1 and 8 (inclusive)

Return Value

Type: Double
The read value
See Also