用python画一个飞镖盘 好看一点
时间: 2024-09-10 10:29:52 浏览: 62
Python 画一个小猪佩奇
在Python中,我们可以使用matplotlib库来创建一个飞镖盘的图形。这里是一个简单的例子,它会在一个圆形区域内添加数字和星星图案,代表飞镖投掷的目标区域:
```python
import matplotlib.pyplot as plt
import numpy as np
def draw_dart_board(radius=0.4, sectors=20):
fig, ax = plt.subplots()
# 创建环形区域
theta = np.linspace(0, 2 * np.pi, sectors + 1)
r = [radius, 0.95 * radius]
ax.fill(theta, r, 'white', alpha=0.7)
# 添加靶心和同心圆环
ax.plot([0], [0], 'ko', markersize=0.08, color='black')
for i in range(1, 6):
ax.plot(np.cos(theta), np.sin(theta) * (i / 5), 'k:', lw=0.5)
# 标记数字区段
for sector in range(sectors):
angle = theta[sector] - np.pi / 2
ax.text(np.cos(angle), np.sin(angle), str(sector + 1), fontsize=10,
ha='center', va='center', rotation=-angle)
# 星星标记
stars = [(np.cos(t), np.sin(t)) for t in np.arange(np.pi/2, np.pi*2, 2*np.pi/12)]
ax.plot(*zip(*stars), 'o', color='red', ms=3, markeredgecolor='black')
# 设置轴范围和背景颜色
ax.set_xlim(-1, 1)
ax.set_ylim(-1, 1)
ax.axis('off')
ax.set_aspect('equal') # 保持正方形比例
plt.show()
# 调用函数绘制飞镖盘
draw_dart_board()
```
阅读全文