LlRot2Axis/ja

From Second Life Wiki
Jump to navigation Jump to search

要約

関数: vector llRot2Axis( rotation rot );

rot で表現される回転軸を vector で返します。

• rotation rot

llRot2Angle とあわせて使います。
元に戻すには llAxisAngle2Rot を使います。

サンプル

関連項目

関数

•  llRot2Angle
•  llAxisAngle2Rot
•  llRot2Left
•  llRot2Fwd
•  llRot2Up

記事

•  Slerp

特記事項

vector llRot2Axis(rotation a) {
    if(a.s < 0)
        return -llVecNorm(<a.x, a.y, a.z>);
    return llVecNorm(<a.x, a.y, a.z>)
}
vector llRot2Axis(rotation a) {
    return llVecNorm(<a.x, a.y, a.z>) * (1 | -(a.s < 0));
}

Search JIRA for related Issues

Signature

function vector llRot2Axis( rotation rot );
この翻訳は 原文 と比べて古いですか?間違いがありますか?読みにくいですか?みんなで 修正 していきましょう! (手順はこちら)
この項目はあなたにとって参考にならない項目ですか?もしかしたらLSL Wikiの関連した項目が参考になるかもしれません。