返回介绍

Vector2.Dot 点乘

发布于 2019-12-18 15:38:42 字数 924 浏览 925 评论 0 收藏 0

JavaScript => public static function Dot(lhs: Vector2, rhs: Vector2): float;
C# => public static float Dot(Vector2 lhs, Vector2 rhs);

Parameters 参数

Description 描述

Dot Product of two vectors.

两个向量的点乘积。

Returns lhs . rhs.

返回lhs . rhs。

For normalized vectors Dot returns 1 if they point in exactly the same direction; -1 if they point in completely opposite directions; and a number in between for other cases (e.g. Dot returns zero if vectors are perpendicular).

如果他们指向相同的方向,归一化向量点乘返回1;如果他们指向完全相反的方向返回-1;在其他情况下在这两个数字之间(即,如果向量垂直,点乘返回0)。

For vectors of arbitrary length the Dot return values are similar: they get larger when the angle between vectors decreases.

对于任意长度的向量点乘返回值近似:向量之间的夹角越大时,他们得到更小。

vector2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文