“LlAsin”的版本间的差异
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名=Function: float llAsin( float val ); |参数= 返回一个浮点数,…”) |
|||
第33行: | 第33行: | ||
文献: | 文献: | ||
[https://en.wikipedia.org/wiki/Inverse_trigonometric_functions] | [https://en.wikipedia.org/wiki/Inverse_trigonometric_functions] | ||
− | | | + | |相关事件=[[Search JIRA for related Issues]] |
}} | }} |
2020年5月18日 (一) 09:28的最新版本
首页 | 函数 | 事件 | 类型 | 操作符 | 常数 | Flow Control | Script Library | Categorized Library | Tutorials |
函数名 |
---|
Function: float llAsin( float val ); |
返回一个浮点数,它是以val弧度表示的弧线 |
•浮动值-必须在范围内[-1.0条, 1.0条]
返回值在范围[-PI_BY_2,PI_BY_2] |
注意事项 |
---|
Search JIRA for related Bugs |
示例 |
---|
示例1
// Touch the object with this script in it to see the arcsine of random numbers! default { touch_start(integer num) { float r = llFrand(2) - 1.0; llOwnerSay("The arcsine of " + (string)r + " is " + (string)llAsin(r)); } } |
相关函数 |
---|
llSin – sine
llCosllAcos – cosine & inverse cosine llTanllAtan2 – tangent & inverse tangent 文献: [1] |
相关事件 |
---|
Search JIRA for related Issues |