Difference between revisions of "RandomGenerator:setSeed"

(Function was renamed and changed)
(Renamed)
Line 1: Line 1:
 
{{newin|[[0.9.0]]|090|type=function}}
 
{{newin|[[0.9.0]]|090|type=function}}
Sets the state ("seed") of the random number generator using the specified integer number.
+
Sets the seed of the random number generator using the specified integer number.
 
== Function ==
 
== Function ==
Sets the state of the random number generator using the specified integer number. Due to Lua's use of double-precision floating point numbers, integer values above 2^53 cannot be accurately represented.
 
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
RandomGenerator:setState( state )
+
RandomGenerator:setSeed( seed )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|state|The integer number with which you want to seed the randomization. Must be within the range of [1, 2^53].}}
+
{{param|number|seed|The integer number with which you want to seed the randomization. Must be within the range of [1, 2^53].}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
 +
=== Notes ===
 +
Due to Lua's use of double-precision floating point numbers, values above 2^53 cannot be accurately represented. Use the other variant of this function if your seed will have a larger value.
 
== Function ==
 
== Function ==
Combines two 32-bit integer numbers into a 64-bit integer value and sets the state of the random number generator using the value.
+
Combines two 32-bit integer numbers into a 64-bit integer value and sets the seed of the random number generator using the value.
 
=== Synopsis ===
 
=== Synopsis ===
 
<source lang="lua">
 
<source lang="lua">
RandomGenerator:setState( low, high )
+
RandomGenerator:setSeed( low, high )
 
</source>
 
</source>
 
=== Arguments ===
 
=== Arguments ===
{{param|number|low|The lower 32 bits of the state value. Must be within the range of [0, 2^32 - 1].}}
+
{{param|number|low|The lower 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].}}
{{param|number|high|The higher 32 bits of the state value. Must be within the range of [0, 2^32 - 1].}}
+
{{param|number|high|The higher 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].}}
 
=== Returns ===
 
=== Returns ===
 
Nothing.
 
Nothing.
 
== See Also ==
 
== See Also ==
 
* [[parent::RandomGenerator]]
 
* [[parent::RandomGenerator]]
* [[RandomGenerator:getState]]
+
* [[RandomGenerator:getSeed]]
 
* [[love.math]]
 
* [[love.math]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Sets the state of the random number generator.}}
+
{{#set:Description=Sets the seed of the random number generator.}}
 
== Other Languages ==
 
== Other Languages ==
{{i18n|RandomGenerator:setState}}
+
{{i18n|RandomGenerator:setSeed}}

Revision as of 03:03, 2 December 2013

Available since LÖVE 0.9.0
This function is not supported in earlier versions.

Sets the seed of the random number generator using the specified integer number.

Function

Synopsis

RandomGenerator:setSeed( seed )

Arguments

number seed
The integer number with which you want to seed the randomization. Must be within the range of [1, 2^53].

Returns

Nothing.

Notes

Due to Lua's use of double-precision floating point numbers, values above 2^53 cannot be accurately represented. Use the other variant of this function if your seed will have a larger value.

Function

Combines two 32-bit integer numbers into a 64-bit integer value and sets the seed of the random number generator using the value.

Synopsis

RandomGenerator:setSeed( low, high )

Arguments

number low
The lower 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].
number high
The higher 32 bits of the seed value. Must be within the range of [0, 2^32 - 1].

Returns

Nothing.

See Also

Other Languages