使用 Python 的 Matplotlib 库来绘制简单的爱心图案

import matplotlib.pyplot as plt
import numpy as np

t = np.linspace(0, 2*np.pi, 100)
x = 16 * np.sin(t)**3
y = 13 * np.cos(t) - 5 * np.cos(2*t) - 2 * np.cos(3*t) - np.cos(4*t)

plt.plot(x, y, 'r')
plt.axis('equal')
plt.fill(x, y, 'r')
plt.show()

这段代码首先导入了 Matplotlib 库,并利用 NumPy 生成了一些数学上的值,然后使用 Matplotlib 的 plot 函数绘制爱心的轮廓,并使用 fill 函数填充爱心的颜色,最后调用 show 函数显示爱心图案。

使用 Python 的 Matplotlib 库来绘制简单的爱心图案_第1张图片

你可能感兴趣的:(python,matplotlib)