0
如何找到P的座標?我已經看到過2D和3D的其他帖子,但他們說我需要3個3D角度,有人說我只需要兩個角度,但我不明白哪些是角度,我在數學上吸吮。查找給定距離和角度的矢量的終點的3D座標
All See this image, I have is those two angles and the distance between B and P
如何找到P的座標?我已經看到過2D和3D的其他帖子,但他們說我需要3個3D角度,有人說我只需要兩個角度,但我不明白哪些是角度,我在數學上吸吮。查找給定距離和角度的矢量的終點的3D座標
All See this image, I have is those two angles and the distance between B and P
要定義在三維的矢量,給定它的長度,則需要2個角度。這3個座標(長度+2個角度)被命名爲「球座標」。定義這種角度有三種慣例。最常見的是半徑 - 仰角 - 方位角。在此慣例中,給定半徑,仰角和方位角的矢量的笛卡爾座標的表達式如下:
x = radius * sin(elevation) * cos(azimuth)
y = radius * sin(elevation) * sin(azimuth)
z = radius * cos(elevation)
你有座標B的座標嗎? –