Category:LSL Vector/ja

From Second Life Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Vector

vectorは3個のfloatの値のセットを含むデータ型(type)である. 各要素は変数名の後に .x, .y, .zを付加することにより個別にアクセスできる.

vector型は次のデータを保持するために使うことができる:

  • 位置: x, y, zの単位はm(メートル).
  • 速度: x, y, zはスピードを表す.
  • : Redはx, Greenはy, Blueはz.

vector型は次の操作をサポートしている:

  • 加算, "+" 演算子
  • 減算, "-" 演算子
  • 乗算 (内積), "*" 演算子
  • 外積, "%" 演算子

vector型はQuaternionの乗算または除算によって回転させることができる.

vector test=<1.0, 2.0, 3.0>;
llOwnerSay((string)test.z); // 3.0を出力する

Pages in category "LSL Vector/ja"

The following 6 pages are in this category, out of 6 total.