Skip to content

Document that trigonometric expressions use radians #13405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/style-spec/reference/v8.json
Original file line number Diff line number Diff line change
Expand Up @@ -4706,7 +4706,7 @@
}
},
"sin": {
"doc": "Returns the sine of the input.",
"doc": "Returns the sine of the input, interpreted as radians.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand All @@ -4717,7 +4717,7 @@
}
},
"cos": {
"doc": "Returns the cosine of the input.",
"doc": "Returns the cosine of the input, interpreted as radians.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand All @@ -4728,7 +4728,7 @@
}
},
"tan": {
"doc": "Returns the tangent of the input.",
"doc": "Returns the tangent of the input, interpreted as radians.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand All @@ -4739,7 +4739,7 @@
}
},
"asin": {
"doc": "Returns the arcsine of the input.",
"doc": "Returns the arcsine of the input, in radians between −π/2 and π/2.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand All @@ -4750,7 +4750,7 @@
}
},
"acos": {
"doc": "Returns the arccosine of the input.",
"doc": "Returns the arccosine of the input, in radians between −π/2 and π/2.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand All @@ -4761,7 +4761,7 @@
}
},
"atan": {
"doc": "Returns the arctangent of the input.",
"doc": "Returns the arctangent of the input, in radians between −π/2 and π/2.",
"group": "Math",
"sdk-support": {
"basic functionality": {
Expand Down
Loading