LlAsin/ko

From Second Life Wiki
< LlAsin
Revision as of 23:30, 3 March 2009 by Nanjido Oh (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

설명

함수: float llAsin( float val );
173 함수ID
0.0 지연
10.0 에너지

반환되는 값은 val의 역사인값(라디안).

• float val 구간 [-1.0, 1.0]에 있어야 한다. (-1.0 <= val <= 1.0)

예제

<lsl>// 누르면 임의의 숫자의 역사인값을 알려준다 default {

   touch_start(integer num)
   {
       float r = llFrand(2) - 1.0;
       llOwnerSay("The arcsine of " + (string)r + " is " + (string)llAsin(r));
   }

}</lsl>

함께 보기

함수

• llSin 사인
• llCos llAcos 코사인과 역코사인
• llTan llAtan2 탄젠트와 역탄젠트2

문서

•  "Wikipedia logo"역삼각함수
이 글이 유용하지 않으세요? LSL Wiki의 관련항목이 도움을 줄 수 있을 지도 모릅니다.