使用Python的turtle库
Python的turtle库是一个简单易用的绘图库,适合用来绘制简单的图形,包括心形图案。以下是一个示例代码:
```python
import turtle
def draw_heart():
penup()
goto(0, -100)
pendown()
color('red')
begin_fill()
setheading(150)
circle(200, 90)
left(90)
circle(200, 90)
end_fill()
hideturtle()
draw_heart()
turtle.done()
```
使用HTML5 Canvas和JavaScript
```html