使用python在processing中画出灰太狼
时间: 2023-12-24 18:02:35 浏览: 149
Processing是一种基于Java语言的图形化编程环境,但是也支持Python语言。下面是使用Python在Processing中画出灰太狼的示例代码:
```python
# 灰太狼
def setup():
size(400, 400)
background(255, 255, 255)
noStroke()
fill(120, 120, 120)
ellipse(200, 200, 150, 200)
fill(255, 255, 255)
ellipse(170, 170, 50, 50)
ellipse(230, 170, 50, 50)
fill(0, 0, 0)
ellipse(170, 170, 20, 20)
ellipse(230, 170, 20, 20)
fill(68, 40, 6)
ellipse(200, 250, 120, 80)
fill(255, 255, 255)
ellipse(180, 240, 30, 30)
ellipse(220, 240, 30, 30)
fill(0, 0, 0)
ellipse(180, 240, 10, 10)
ellipse(220, 240, 10, 10)
fill(255, 255, 255)
ellipse(200, 280, 80, 30)
fill(68, 40, 6)
rect(150, 320, 100, 40)
triangle(160, 320, 160, 380, 140, 380)
triangle(240, 320, 240, 380, 260, 380)
fill(255, 255, 255)
textSize(20)
text("Gray Wolf", 150, 310)
```
运行上述代码,即可在Processing中看到灰太狼的画面。
阅读全文