Add documentation for arcus trigonometry functions (#9982)

This commit is contained in:
Tomi Lehto 2019-08-13 02:08:15 +03:00 committed by Franck Nijhof
parent 43da41b820
commit e21de0f104

View File

@ -268,6 +268,10 @@ Some of these functions can also be used in a [filter](http://jinja.pocoo.org/do
- `sin(value)` will return the sine of the input. Can be used as a filter. - `sin(value)` will return the sine of the input. Can be used as a filter.
- `cos(value)` will return the cosine of the input. Can be used as a filter. - `cos(value)` will return the cosine of the input. Can be used as a filter.
- `tan(value)` will return the tangent of the input. Can be used as a filter. - `tan(value)` will return the tangent of the input. Can be used as a filter.
- `asin(value)` will return the arcus sine of the input. Can be used as a filter.
- `acos(value)` will return the arcus cosine of the input. Can be used as a filter.
- `atan(value)` will return the arcus tangent of the input. Can be used as a filter.
- `atan2(y, x)` will return the four quadrant arcus tangent of y / x. Can be used as a filter.
- `sqrt(value)` will return the square root of the input. Can be used as a filter. - `sqrt(value)` will return the square root of the input. Can be used as a filter.
- `e` mathematical constant, approximately 2.71828. - `e` mathematical constant, approximately 2.71828.
- `pi` mathematical constant, approximately 3.14159. - `pi` mathematical constant, approximately 3.14159.