diff options
author | Minh Nguyễn <mxn@1ec5.org> | 2018-04-19 15:10:41 -0700 |
---|---|---|
committer | Minh Nguyễn <mxn@1ec5.org> | 2018-04-19 15:10:41 -0700 |
commit | d4878960a6d1b0b14b437089cbf1bb5db9a4ea8d (patch) | |
tree | f60b5da2890b92a5a6a7a3891c2eb5f3cbccddaa | |
parent | ebea67087a6f44644ade60bf419e36a6ec9a65c5 (diff) | |
download | qtlocation-mapboxgl-d4878960a6d1b0b14b437089cbf1bb5db9a4ea8d.tar.gz |
[ios, macos] Documented trig functions
-rw-r--r-- | platform/darwin/docs/guides/Predicates and Expressions.md | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/platform/darwin/docs/guides/Predicates and Expressions.md b/platform/darwin/docs/guides/Predicates and Expressions.md index df4d2fc249..926a80376b 100644 --- a/platform/darwin/docs/guides/Predicates and Expressions.md +++ b/platform/darwin/docs/guides/Predicates and Expressions.md @@ -356,6 +356,61 @@ order. Compared to the function, this function takes only one argument, which is an aggregate expression containing the strings to concatenate. +### `mgl_acos:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_acos:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_acos(1)</code></dd> +</dl> + +Returns the arccosine of the number. + +### `mgl_asin:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_asin:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_asin(0)</code></dd> +</dl> + +Returns the arcsine of the number. + +### `mgl_atan:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_atan:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_atan(20)</code></dd> +</dl> + +Returns the arctangent of the number. + +### `mgl_cos:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_cos:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_cos(0)</code></dd> +</dl> + +Returns the cosine of the number. + +### `mgl_log2:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_log2:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_log2(1024)</code></dd> +</dl> + +Returns the base-2 logarithm of the number. + ### `mgl_round:` <dl> @@ -368,6 +423,28 @@ expression containing the strings to concatenate. Returns the number rounded to the nearest integer. If the number is halfway between two integers, this function rounds it away from zero. +### `mgl_sin:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_sin:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_sin(0)</code></dd> +</dl> + +Returns the sine of the number. + +### `mgl_tan:` + +<dl> +<dt>Selector:</dt> +<dd><code>mgl_tan:</code></dd> +<dt>Format string syntax:</dt> +<dd><code>mgl_tan(0)</code></dd> +</dl> + +Returns the tangent of the number. + ### `mgl_coalesce:` <dl> |