rad()
abereFejiro995340965013 total contributions
Published Oct 18, 2023
Contribute to Docs
The rad()
function in Lua’s math library converts a number given in degrees to its equivalent in radians.
Syntax
math.rad(degree)
degree
: The number in degrees.
Example
In this example, math.rad()
converts 180 degrees to radians.
local x = 180local answer = math.rad(x)local output = string.format("%.0f in radians is %.4f", x, answer)print(output)
This will result in the following output below.
180 in radians is 3.1416
All contributors
- abereFejiro995340965013 total contributions
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.