mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
9d2b5f98d0
This commit adds these new template functions in the `math` namespace: math.Acos math.Asin math.Atan math.Atan2 math.Cos math.Pi math.Sin math.Tan math.ToDegrees math.ToRadians Co-authored-by: Joe Mooring <joe@mooring.com>
24 lines
475 B
Markdown
24 lines
475 B
Markdown
---
|
|
title: math.Asin
|
|
description: Returns the arcsine, in radians, of the given number.
|
|
categories: []
|
|
keywords: []
|
|
action:
|
|
aliases: []
|
|
related:
|
|
- functions/math/Acos
|
|
- functions/math/Atan
|
|
- functions/math/Atan2
|
|
- functions/math/Pi
|
|
- functions/math/Sin
|
|
- functions/math/Cos
|
|
- functions/math/Tan
|
|
returnType: float64
|
|
signatures: [math.Asin VALUE]
|
|
---
|
|
|
|
{{< new-in 0.130.0 >}}
|
|
|
|
```go-html-template
|
|
{{ math.Asin 1 }} → 1.5707963267948966
|
|
```
|