A random number in an arbitrary interval.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static double NextDouble(
	double lowerBound,
	double upperBound
)
Visual Basic (Declaration)
Public Shared Function NextDouble ( _
	lowerBound As Double, _
	upperBound As Double _
) As Double
Visual C++
public:
static double NextDouble(
	double lowerBound, 
	double upperBound
)

Parameters

lowerBound
Type: System..::.Double
The lower interval bound.
upperBound
Type: System..::.Double
The upper interval bound.

Return Value

Returns a random number between [lowerBound...upperBound].

See Also