言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Vector2.Dot

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public static function Dot(lhs: Vector2, rhs: Vector2): float;
public static float Dot(Vector2 lhs, Vector2 rhs);
public static def Dot(lhs as Vector2, rhs as Vector2) as float

Description

2つのベクトルの内積

rhs . rhs を返します。 2つのベクトルが全く同じ方向を指している場合、正規化されたベクトルの内積は1を返します。 反対方向を向く場合は-1を返します。それ以外のケースでは-1から1の間の数を返します。 (ベクトルが垂直である場合、内積は0を返します) 任意の長さであるベクトルの返す内積の値は類似しています。ベクトルの間の角度が小さくなっていく時内積の値は 大きくなっていきます。