以下是一个使用 Python 和 matplotlib 库绘制一朵花的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 设置画布大小
plt.figure(figsize=(6, 6))
# 创建一个圆形,半径为 1,中心为 (0, 0)
circle1 = plt.Circle((0, 0), 1, fill=False, linestyle='dashed')
# 创建一个内切正方形,边长为 1
square1 = plt.Rectangle((-0.5, -0.5), 1, 1, fill=False, linestyle='dashed')
# 创建一个外切正方形,边长为 1.4142
square2 = plt.Rectangle((0.5, 0.5), 1.4142, 1.4142, fill=False, linestyle='dashed')
# 将图形添加到画布上
plt.gca().add_artist(circle1)
plt.gca().add_artist(square1)
plt.gca().add_artist(square2)
# 设置坐标轴范围
plt.xlim(-2, 2)
plt.ylim(-2, 2)
# 设置坐标轴标签
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 设置标题
plt.title('A Flower')
# 显示图形
plt.show()
```
这个程序使用 matplotlib 库绘制了一个简单的花朵形状,包括一个圆形、一个内切正方形和一个外切正方形。你可以根据需要调整颜色、大小等属性。运行这段代码,你将看到一朵花在屏幕上绽放。
© 版权声明
暂无评论内容