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.
给定长度和角度时,我们如何计算直线的坐标(使用公式)。
我必须制作一个弹出框,它将长度和角度作为输入并画一条线。只需要公式
假设线路的一端位于(x0, y0),另一端将位于:
(x0, y0)
x1 = x0 + r cos(t * pi / 180) y1 = y0 + r sin(t * pi / 180)
其中r是线的长度,t是角度,以度为单位。
r
t