Difference between revisions of "LlAcos/ko"
< LlAcos
Jump to navigation
Jump to search
Nanjido Oh (talk | contribs) (New page: {{LSL_Function/ko |func_id=172|func_sleep=0.0|func_energy=10.0 |func=llAcos|sort=Acos |return_type=float |p1_type=float|p1_name=val|p1_desc=val은 구간 [-1.0, 1.0]에 있어야 한다. (...) |
Nanjido Oh (talk | contribs) |
||
Line 6: | Line 6: | ||
|return_text='''val'''의 역코사인값(라디안) | |return_text='''val'''의 역코사인값(라디안) | ||
|spec|caveats|func_footnote | |spec|caveats|func_footnote | ||
|examples=<lsl>//누르면 임의의 숫자의 | |examples=<lsl>//누르면 임의의 숫자의 역코사인을 알려준다 | ||
default | default | ||
{ | { | ||
Line 17: | Line 17: | ||
|helpers|related | |helpers|related | ||
|also_functions= | |also_functions= | ||
{{LSL DefineRow/ko|[[llSin]]|[[llAsin]]| | {{LSL DefineRow/ko|[[llSin]]|[[llAsin]]|사인과 역사인}} | ||
{{LSL DefineRow/ko|[[llCos]]|| | {{LSL DefineRow/ko|[[llCos]]||코사인}} | ||
{{LSL DefineRow/ko|[[llTan]]|[[llAtan2]]| | {{LSL DefineRow/ko|[[llTan]]|[[llAtan2]]|탄젠트와 역탄젠트2}} | ||
|also_articles={{LSL DefineRow||{{wikipedia| | |also_articles={{LSL DefineRow||{{wikipedia|lang=ko|역삼각함수}}|}} | ||
|notes | |notes | ||
|cat1=Math/Trigonometry | |cat1=Math/Trigonometry |
Latest revision as of 22:32, 3 March 2009
예제
<lsl>//누르면 임의의 숫자의 역코사인을 알려준다 default {
touch_start(integer num) { float r = llFrand(2) - 1.0; llOwnerSay("The arccosine of " + (string)r + " is " + (string)llAcos(r)); }
}</lsl>
이 글이 유용하지 않으세요? LSL Wiki의 관련항목이 도움을 줄 수 있을 지도 모릅니다.