import numpy as np
import matplotlib.pyplot as plt
from matplotlib.animation import FuncAnimation
# إعداد الرسم البياني
fig, ax = plt.subplots(figsize=(6, 6))
ax.axis('equal')
ax.axis('off')
# المعادلة الرياضية للقلب
t = np.linspace(0, 2 * np.pi, 1000)
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)
# رسم القلب لأول مرة
heart, = ax.fill(x, y, color='red')
# دالة تحديث الرسوم لجعل القلب ينبض
def update(frame):
scale = 1 + 0.1 * np.sin(frame / 5) # التحكم في درجة النبض
heart.set_xy(np.c_[x * scale, y * scale])
# إعداد الحركة لجعل القلب ينبض بشكل متكرر
ani = FuncAnimation(fig, update, frames=np.linspace(0, 2 * np.pi, 60), interval=50)
# عرض الرسم المتحرك
plt.show()