加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
让xy在圆上移动.py 688 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-11-28 20:33 . 完成赛马右侧绕弧线
# -*- coding: utf-8 -*-
"""
Created on Sun Nov 28 10:49:36 2021
@author: Administrator
"""
from math import sqrt
from math import radians
from math import cos
from math import sin
from math import pi
import matplotlib.pyplot as plt
x_values = []
y_values = []
x,y = (300,300)
for angle in range(180):
radius = 3
x += math.cos(math.radians(angle)) * radius #调用cos,sin函数(以弧度作为参数)让圆心在圆周上移动
y -= math.sin(math.radians(angle)) * radius #将角度转化为弧度,需导入math库
x_values.append(x)
y_values.append(y)
plt.xlim(xmax=1000,xmin=0)
plt.ylim(ymax=600,ymin=0)
plt.scatter(x_values, y_values, s=50)
plt.show()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化