Files
ferret/pkg/stdlib/math/atan2.go
T

40 lines
1008 B
Go
Raw Normal View History

2018-10-13 21:07:28 -04:00
package math
import (
"context"
2018-10-14 20:06:27 +03:00
"math"
2018-10-13 21:07:28 -04:00
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
2019-02-13 12:31:18 -05:00
"github.com/MontFerret/ferret/pkg/runtime/values/types"
2018-10-13 21:07:28 -04:00
)
2018-10-14 20:06:27 +03:00
// Atan2 returns the arc tangent of y/x, using the signs of the two to determine the quadrant of the return value.
// @param number1 (Int|Float) - Input number.
// @param number2 (Int|Float) - Input number.
// @returns (Float) - The arc tangent of y/x, using the signs of the two to determine the quadrant of the return value.
2018-10-13 21:07:28 -04:00
func Atan2(_ context.Context, args ...core.Value) (core.Value, error) {
err := core.ValidateArgs(args, 2, 2)
if err != nil {
return values.None, err
}
2019-02-13 12:31:18 -05:00
err = core.ValidateType(args[0], types.Int, types.Float)
2018-10-13 21:07:28 -04:00
if err != nil {
return values.None, err
}
2019-02-13 12:31:18 -05:00
err = core.ValidateType(args[1], types.Int, types.Float)
2018-10-13 21:07:28 -04:00
if err != nil {
return values.None, err
}
arg1 := toFloat(args[0])
arg2 := toFloat(args[1])
return values.NewFloat(math.Atan2(arg1, arg2)), nil
}