“LlEuler2Rot”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: rotation llEuler2Rot( vector v ); |参数= 参数:• ve…”)
 
Kjf讨论 | 贡献
 
(未显示另一用户的1个中间版本)
第4行: 第4行:
 
{{函数详情
 
{{函数详情
 
|函数名 = Function: rotation llEuler2Rot( vector v );
 
|函数名 = Function: rotation llEuler2Rot( vector v );
|参数= 参数:• vector v – Angle
+
|参数= 参数:• vector v –角度
|返回值= 返回值:Returns a rotation representation of the Euler Angles v.
+
|返回值= 返回值:返回Euler Angles v的旋转表示。
 
 
 
 
|注意事项=The Euler angle vector (in radians) is converted to a rotation by doing the rotations around the 3 axes in Z, Y, X order. So llEuler2Rot(<1.0, 2.0, 3.0> * DEG_TO_RAD) generates a rotation by first rotating 3 degrees around the global Z axis, then rotating the result around the global Y axis, and finally rotating that 1 degree around the global X axis.
 
  
 +
|注意事项=[[All Issues]] ~ [[Search JIRA for related Bugs]]
  
 
|示例=
 
|示例=

2021年8月17日 (二) 09:34的最新版本

Template:Needs Translation/


函数名
Function: rotation llEuler2Rot( vector v );
参数:• vector v –角度
返回值:返回Euler Angles v的旋转表示。
注意事项
All Issues ~ Search JIRA for related Bugs
示例
示例1
default
{
    state_entry()
    {
        vector input = <73.0, -63.0, 20.0> * DEG_TO_RAD;
        rotation rot = llEuler2Rot(input);
        llSay(0,"The Euler2Rot of "+(string)input+" is: "+(string)rot );
    }
}
相关函数
llRot2Euler
相关事件