-
Notifications
You must be signed in to change notification settings - Fork 94
asin
Ryzom Core Wiki edited this page Jul 8, 2024
·
3 revisions
title: Asin description: published: true date: 2023-03-16T23:05:10.121Z tags: editor: markdown dateCreated: 2023-03-16T22:21:11.898Z
The asin function returns the arcsine of an input value.
(y: f)asin(x: f)
- x (float): The input value.
- y (float): The result of the arcsine operation.
(y)asin(0.5f);
This example code calculates the arcsine of 0.5 and stores the result in the variable y
.