“LlEuler2Rot”的版本间的差异

来自人工智能助力教育知识百科
跳转至: 导航搜索
(创建页面,内容为“{{LSL Header|ml=*}}{{LSLC|Keywords}}{{LSLC|Flow Control}}{{LSLC|}} {{函数详情 |函数名 = Function: rotation llEuler2Rot( vector v ); |参数= 参数:• ve…”)
 
Mkx讨论 | 贡献
第5行: 第5行:
 
|函数名 = Function: rotation llEuler2Rot( vector v );
 
|函数名 = Function: rotation llEuler2Rot( vector v );
 
|参数= 参数:• vector v – Angle  
 
|参数= 参数:• vector v – Angle  
|返回值= 返回值: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]]
  
 
|示例=
 
|示例=

2020年4月16日 (四) 04:23的版本

Template:Needs Translation/


函数名
Function: rotation llEuler2Rot( vector v );
参数:• vector v – Angle
返回值:返回Euler Anglesv的旋转表示。
注意事项
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
相关事件