math.atan2的说明图示

发布时间:2024年01月22日

math.atan2的图形:
在这里插入图片描述
以x轴正向为起点,x正向范围[0,180]。

math.atan2代码:

import math

x1, y1 = 0,0
x2, y2 = 0,2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = 2,2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = 2,0
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = 2,-2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = 0,-2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = -2,-2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = -2,0
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

x1, y1 = 0,0
x2, y2 = -2,2
temp = math.atan2((y2 - y1), (x2 - x1))
angle = temp / math.pi * 180
print(angle)

在这里插入图片描述

文章来源:https://blog.csdn.net/weixin_41865866/article/details/135606365
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。