| RandomHelperNextMatrix33F Method |
Namespace: DigitalRune.Mathematics.StatisticsAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Matrix33F NextMatrix33F(
this Random random,
float min,
float max
)
<ExtensionAttribute>
Public Shared Function NextMatrix33F (
random As Random,
min As Single,
max As Single
) As Matrix33F
public:
[ExtensionAttribute]
static Matrix33F NextMatrix33F(
Random^ random,
float min,
float max
)
[<ExtensionAttribute>]
static member NextMatrix33F :
random : Random *
min : float32 *
max : float32 -> Matrix33F
Parameters
- random
- Type: SystemRandom
The random number generator. If this parameter is , the global random
number generator (see Random) is used.
- min
- Type: SystemSingle
The minimal allowed value for a matrix element. - max
- Type: SystemSingle
The maximal allowed value for a matrix element.
Return Value
Type:
Matrix33FA random
Matrix33F.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Random. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also