Difference between revisions of "LlCos/ko"
< LlCos
Jump to navigation
Jump to search
Nanjido Oh (talk | contribs) (New page: {{LSL_Function/ko |sort=Cos|func=llCos |func_id=1|func_sleep=0.0|func_energy=10.0 |func_footnote |p1_type=float|p1_name=theta|p1_desc=라디안 각도 |return_type=float= |return_text=thet...) |
Nanjido Oh (talk | contribs) m |
||
Line 4: | Line 4: | ||
|func_footnote | |func_footnote | ||
|p1_type=float|p1_name=theta|p1_desc=라디안 각도 | |p1_type=float|p1_name=theta|p1_desc=라디안 각도 | ||
|return_type=float | |return_type=float | ||
|return_text=theta의 코사인 | |return_text=theta의 코사인 | ||
|spec | |spec |
Latest revision as of 22:15, 3 March 2009
예제
<lsl>//누르면 임의의 수의 코사인 값을 알려준다 default {
touch_start(integer num) { float r = llFrand(TWO_PI); llOwnerSay("The cosine of " + (string)r + " in radians or " + (string)(r * RAD_TO_DEG) + " in degrees is " + (string)llCos(r)); }
}</lsl>
이 글이 유용하지 않으세요? LSL Wiki의 관련항목이 도움을 줄 수 있을 지도 모릅니다.