我试图在 3D 空间中以弧线运动将对象从 a 点移动到 b 点。我最近一直在阅读矩阵,并试图绕过它们但无济于事。比方说:
a = (x.100.0,y.200.0,z.300.0)
b = (x.-300.0,y.-100.0,z.0.0)
c = finding the middle of a,b matrices
d = start at a, do something with math.pi and multiplying the c matrices to give you and arc motion over to b.
然后计算圆弧位置,c 位于圆弧的中间。这是正确的方法吗?