心形的绘制 使用tkinter库,创建600*600的画布,以红色实线绘制坐标轴。当a=80,t在-π~π范围内以步长0.01变化时,用蓝色绘制函数图形。效果如图所示 x=a(2 sint -sin2t) y=a(2 cost-cos2t)
时间: 2024-02-05 10:11:35 浏览: 61
心形线绘制
以下是使用 Python 的 tkinter 库绘制心形图形的代码:
```python
import math
import tkinter as tk
# 创建画布
root = tk.Tk()
canvas = tk.Canvas(root, width=600, height=600)
canvas.pack()
# 绘制坐标轴
canvas.create_line(100, 300, 500, 300, fill="red", width=2)
canvas.create_line(300, 100, 300, 500, fill="red", width=2)
# 绘制心形曲线
a = 80
for t in range(-314, 314):
x = a * (2 * math.sin(t/100) - math.sin(2*t/100))
y = a * (2 * math.cos(t/100) - math.cos(2*t/100))
canvas.create_line(x+300, y+300, x+301, y+301, fill="blue", width=2)
root.mainloop()
```
运行以上代码,即可在窗口中看到绘制的心形图形。
阅读全文