Click or drag to resize
RandomUtilsRangeDouble Method
Returns a random double number between the specified minimum and maximum (exclusive).

Namespace: Slash.Math.Utils
Assembly: Slash.Math (in Slash.Math.dll) Version: 1.0.6018.40177
Syntax
public static double RangeDouble(
	double min,
	double max
)

Parameters

min
Type: SystemDouble
Minimum value.
max
Type: SystemDouble
Maximum value (exclusive).

Return Value

Type: Double
Random double number between the specified minimum and maximum (exclusive).
See Also