使用Python的turtle模块
turtle模块是一个简单的绘图库,可以用来绘制各种图形。以下是一个使用turtle模块绘制房子的示例代码:
```python
import turtle
创建画布
window = turtle.Screen()
window.bgcolor("white")
创建画笔
pen = turtle.Turtle()
pen.speed(1)
绘制房子的主体
pen.penup()
pen.goto(-100, -100)
pen.pendown()
pen.color("red")
pen.begin_fill()
for _ in range(4):
pen.forward(200)
pen.left(90)
pen.end_fill()
绘制房顶
pen.penup()
pen.goto(-100, 100)
pen.pendown()
pen.color("blue")
pen.begin_fill()
pen.goto(0, 200)
pen.goto(100, 100)
pen.goto(-100, 100)
pen.end_fill()
绘制门
pen.penup()
pen.goto(-40, -100)
pen.pendown()
pen.color("yellow")
pen.begin_fill()
pen.forward(80)
pen.left(90)
pen.forward(120)
pen.left(90)
pen.forward(80)
pen.left(90)
pen.forward(120)
pen.end_fill()
隐藏画笔
pen.hideturtle()
结束绘制
window.mainloop()
```
使用Python的matplotlib库
matplotlib库可以用于绘制更复杂的图形。以下是一个使用matplotlib库绘制房子的示例代码:
```python
import matplotlib.pyplot as plt
创建一个图形窗口
fig, ax = plt.subplots()
绘制房子的底部
ax.plot([0, 0, 10, 10, 0], [0, 5, 5, 0, 0], 'k-')
绘制房子的上部
ax.plot([0, 10], [5, 10], 'k-')
ax.plot([10, 5], [10, 15], 'k-')
ax.plot([5, 0], [15, 10], 'k-')
绘制门和窗户
ax.plot([2, 8], [0, 0], 'k-')
ax.plot([3, 3], [0, 2], 'k-')
ax.plot([7, 7], [0, 2], 'k-')
设置坐标轴范围
ax.set_xlim([-1, 11])
ax.set_ylim([-1, 16])
隐藏坐标轴
ax.axis('off')
显示图形
plt.show()
```
使用其他编程语言
除了Python,其他编程语言如JavaScript也可以用来绘制房子。以下是一个使用JavaScript和HTML5 Canvas绘制房子的示例代码:
```html