diff options
author | Fabian Guerra Soto <fabian.guerra@mapbox.com> | 2018-04-17 18:23:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 18:23:35 -0400 |
commit | a6c02adeb6938e97aa6c78c67c0738bd5fda6bdc (patch) | |
tree | fd29f9a36a16ac08d7d2e7669026b401fe2acdc3 /platform/ios/docs | |
parent | 4c1ed22efaa6cf6db9fe8a1e98e173ef99f601a5 (diff) | |
download | qtlocation-mapboxgl-a6c02adeb6938e97aa6c78c67c0738bd5fda6bdc.tar.gz |
[ios, macos] Add trigonometric support to NSExpression. (#11716)
* [ios, macos] Add acos NSExpresssion operator.
* [ios, macos] Add asin NSExpresssion operator.
* [ios, macos] Add atan NSExpresssion operator.
* [ios, macos] Add cosine NSExpresssion operator.
* [ios, macos] Add sine NSExpresssion operator.
* [ios, macos] Add tangent NSExpresssion operator.
* [ios, macos] Add log2 NSExpresssion operator.
* [ios, macos] Update style authors documentation.
Diffstat (limited to 'platform/ios/docs')
-rw-r--r-- | platform/ios/docs/guides/For Style Authors.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/platform/ios/docs/guides/For Style Authors.md b/platform/ios/docs/guides/For Style Authors.md index 1ce0a4bf4f..fa65b3ccb9 100644 --- a/platform/ios/docs/guides/For Style Authors.md +++ b/platform/ios/docs/guides/For Style Authors.md @@ -365,24 +365,24 @@ In style specification | Method, function, or predicate type | Format string syn `^` | `raise:toPower:` | `2 ** 2` `+` | `add:to:` | `1 + 2` `abs` | `abs:` | `abs(-1)` -`acos` | | -`asin` | | -`atan` | | +`acos` | `mgl_acos:` | `mgl_acos(1)` +`asin` | `mgl_asin:` | `mgl_asin(0)` +`atan` | `mgl_atan:` | `mgl_atan(20)` `ceil` | `ceiling:` | `ceiling(0.99999)` -`cos` | | +`cos` | `mgl_cos:` | `mgl_cos(0)` `e` | | `%@` representing `NSNumber` containing `M_E` `floor` | `floor:` | `floor(-0.99999)` `ln` | `ln:` | `ln(2)` `ln2` | | `%@` representing `NSNumber` containing `M_LN2` `log10` | `log:` | `log(1)` -`log2` | | +`log2` | `mgl_log2:` | `mgl_log2(1024)` `max` | `max:` | `max({1, 2, 2, 3, 4, 7, 9})` `min` | `min:` | `min({1, 2, 2, 3, 4, 7, 9})` `pi` | | `%@` representing `NSNumber` containing `M_PI` `round` | `mgl_round:` | `mgl_round(1.5)` -`sin` | | +`sin` | `mgl_sin:` | `mgl_sin(0)` `sqrt` | `sqrt:` | `sqrt(2)` -`tan` | | +`tan` | `mgl_tan:` | `mgl_tan(0)` `zoom` | `NSExpression.zoomLevelVariableExpression` | `$zoom` `heatmap-density` | `NSExpression.heatmapDensityVariableExpression` | `$heatmapDensity` |