两点的方向

发布于 2024-10-28 04:10:41 字数 261 浏览 0 评论 0原文

有些高中数学概念忘记了,所以在这里问一下。

如果我有两个点p1(x1,y1), p2(x2,y2),方向是P1-->p2,即 p1 指向 p2。用向量来表示这个方向,是Vector(x2-x1,y2-y1)还是Vector(x1-x2,y1-y2)

顺便问一下,向量归一化的目的是什么?

Some high school math concept has been forgotten, so I ask here.

If I have two points p1(x1,y1), p2(x2,y2), the direction is P1-->p2, that's p1 points to p2. To represent this direction by vector, is it Vector(x2-x1,y2-y1) or Vector(x1-x2, y1-y2)?

By the way, what is the purpose to normalize a vector?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

述情 2024-11-04 04:10:41
  • 答案 1:它是 Vector(x2-x1,y2-y1)
  • 答案 2:归一化意味着缩放向量,使其长度为 1。这在许多计算中是一个有用的操作,例如,法向向量应指定为计算机图形学中光照计算的标准化。 v(x,y) 的归一化向量为 vn(x/Length(v), y/length(v))

华泰

  • Answer 1: it is Vector(x2-x1,y2-y1)
  • Answer 2: Normalizing means to scale the vector so that its length is 1. It is a useful operation in many computations, for example, normal vectors should be specified normalized for lighting calculations in computer graphics. The normalized vector of v(x,y) is vn(x/Length(v), y/length(v)).

HTH

失去的东西太少 2024-11-04 04:10:41

记住减法的一个好方法是考虑向量实际上做了什么。想象向量 v 位于 p1,指向并连接到 p2。这意味着 p1 + v = p2。因此,v = p2-p1。

A nice way to remember which way the subtraction goes is to think of what the vector actually does. Imagine vector v resting at p1, pointing and connecting to p2. This means that p1 + v = p2. Therefore, v = p2-p1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文