Math: Difference between revisions
Jump to navigation
Jump to search
Fernando187 (talk | contribs) m (add math.randomseed(os.time()) tip) |
|||
(One intermediate revision by one other user not shown) | |||
Line 25: | Line 25: | ||
* [http://www.lua.org/manual/5.1/manual.html#pdf-math.rad math.rad] | * [http://www.lua.org/manual/5.1/manual.html#pdf-math.rad math.rad] | ||
* [http://www.lua.org/manual/5.1/manual.html#pdf-math.random math.random] | * [http://www.lua.org/manual/5.1/manual.html#pdf-math.random math.random] | ||
* [http://www.lua.org/manual/5.1/manual.html#pdf-math.randomseed math.randomseed] | |||
Do this beforehand to improve randomness: | Do this beforehand to improve randomness: | ||
<syntaxhighlight lang="lua">math. | <syntaxhighlight lang="lua">math.randomseed(os.time())</syntaxhighlight> | ||
* [http://www.lua.org/manual/5.1/manual.html#pdf-math.sin math.sin] | * [http://www.lua.org/manual/5.1/manual.html#pdf-math.sin math.sin] | ||
* [http://www.lua.org/manual/5.1/manual.html#pdf-math.sinh math.sinh] | * [http://www.lua.org/manual/5.1/manual.html#pdf-math.sinh math.sinh] | ||
Line 37: | Line 37: | ||
==See Also== | ==See Also== | ||
* [http://lua-users.org/wiki/MathLibraryTutorial Math examples on the | * [http://lua-users.org/wiki/MathLibraryTutorial Math examples on the Lua wiki.] | ||
[[Category:Scripting Concepts]] | [[Category:Scripting Concepts]] |
Latest revision as of 07:49, 8 June 2024
Math is a built-in Lua library which contains mathematical functions and constants that you can use in scripts.
- math.abs
- math.acos
- math.asin
- math.atan
- math.atan2
- math.ceil
- math.cos
- math.cosh
- math.deg
- math.exp
- math.floor
- math.fmod
- math.frexp
- math.huge (constant)
- math.ldexp
- math.log
- math.log10
- math.max
- math.min
- math.modf
- math.pi (constant)
- math.pow
- math.rad
- math.random
- math.randomseed
Do this beforehand to improve randomness:
math.randomseed(os.time())