编程画三个长方形怎么画

时间:2025-01-28 23:28:37 网络游戏

方法一:使用matplotlib库

```python

import numpy as np

import matplotlib.pyplot as plt

from matplotlib.animation import FuncAnimation

定义长方形的初始坐标和速度

x1, y1 = 0, 0

dx1, dy1 = 0.1, 0

x2, y2 = 1, 1

dx2, dy2 = -0.2, 0.1

定义长方形的边长

w, h = 0.2, 0.4

绘制长方形

rect1 = plt.Rectangle((x1, y1), w, h, color='r')

rect2 = plt.Rectangle((x2, y2), w, h, color='b')

添加长方形到坐标系中

ax = plt.gca()

ax.add_patch(rect1)

ax.add_patch(rect2)

设置坐标轴范围

ax.set_xlim(-1, 2)

ax.set_ylim(-1, 2)

定义每帧更新的函数

def update(frame):

global x1, y1, dx1, dy1, x2, y2, dx2, dy2

更新长方形的坐标

x1 += dx1

y1 += dy1

x2 += dx2

y2 += dy2

边界检测

if x1 + w > 2 or x1 < -1:

dx1 = -dx1

if x2 + w > 2 or x2 < -1:

dx2 = -dx2

创建动画

ani = FuncAnimation(fig, update, frames=np.arange(0, 100, 0.1), repeat=False)

显示动画

plt.show()

```

方法二:使用turtle模块

```python

import turtle

创建一个turtle对象

t = turtle.Turtle()

设置画笔宽度和颜色

t.pensize(2)

t.pencolor("red")

绘制三个长方形

for i in range(3):

t.forward(100) 向前移动100个单位

t.right(90) 向右转90度

t.forward(200) 向前移动200个单位

t.right(90) 向右转90度

t.forward(100) 向前移动100个单位

t.right(90) 向右转90度

结束绘制

turtle.done()

```

方法三:使用HTML5 Canvas和JavaScript

```html