同原点的两条线之间的角度?
我需要计算具有相同原点的两条线段之间的角度。一条线垂直于 y 轴。请建议一个方法?
I need to calculate angle between two line segments with the same origin. One line is perpendicular to the y-axis. Please suggest a method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您有两条线。
y=m1x+c1
和y=m2x+c1
,分别为l1
和l2
。如果线l1
垂直于y
轴,则意味着l1
平行于x
轴,因此l1
的斜率为 0。因此l1
和l2
之间的角度将为arctan(m2)
。Let's say you have two lines.
y=m1x+c1
andy=m2x+c1
, lets sayl1
andl2
respectively. If linel1
is perpendicular to they
axis, it means thatl1
is parallel tox
axis, so the slope ofl1
is 0. So the angle betweenl1
andl2
will bearctan(m2)
.