Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
395 B
Plaintext
Raw Permalink Normal View History

2015-10-10 10:07:15 +02:00
{
"name": "radians",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["Math"],
2015-10-10 10:07:15 +02:00
"description": "Converts from degrees to radians.",
2022-01-13 08:56:17 -05:00
"arguments": [{
"arg": "degrees",
"description": "numeric value"
}],
"examples": [{
"expression": "radians(180)",
"returns": "3.14159"
}, {
"expression": "radians(57.2958)",
"returns": "1"
}],
"tags": ["converts", "degrees", "radians"]
2015-10-10 10:07:15 +02:00
}