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.
我正在使用 LUA 为 FiveM 构建一个系统。对于那个系统,我需要一个特定的坐标。
车辆系统游戏
坐标的绘制
我知道坐标 A、B、C、D、E、P。但现在我想知道 G 点。
我将如何用数学来做到这一点,我将如何在 LUA 中做到这一点?
-- P, E, D - vectors local EP = P - E local nED = norm(D - E) local G = P - (EP.x*nED.x+EP.y*nED.y+EP.z*nED.z)*nED