在编程中填充三角形的方法取决于你使用的编程语言和图形库。以下是几种常见编程语言中填充三角形的方法:
Python
使用`matplotlib`库:
```python
import matplotlib.pyplot as plt
三角形的顶点坐标
points = [(0, 0), (1, 1), (0, 1)]
绘制并填充三角形
plt.plot(points[:, 0], points[:, 1], 'bo-') 'bo-' 表示蓝色圆点连接的线
plt.fill(points[:, 0], points[:, 1], 'skyblue') 填充蓝色
plt.show()
```
使用`turtle`库:
```python
import turtle
创建turtle对象
t = turtle.Turtle()
绘制三角形
t.forward(100)
t.left(120)
t.forward(100)
t.left(120)
t.forward(100)
填充三角形
t.begin_fill()
t.fillcolor("blue")
t.end_fill()
隐藏turtle
t.hideturtle()
结束绘制
turtle.done()
```
JavaScript
使用HTML5 Canvas:
```html