LlEuler2Rot

来自人工智能助力教育知识百科
跳转至: 导航搜索

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
相关事件