Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的游戏中,我使用两点画线。我想计算线之间的点。请给出在两点之间寻找点的任何公式。
如果你的两点是A然后B
A
B
r(t) = A + t(B - A) ,其中 t 大于或等于 0 且小于或等于 1
A是连接到的线的方程B,因此允许您找到位于它们之间的线上的任何点(通过使用适当的 t 值)。
这有帮助吗??