鱼C论坛

 找回密码
 立即注册
查看: 2392|回复: 15

[分享] 送你一只冰墩墩

[复制链接]
发表于 2022-2-19 17:53:03 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本作品使用python turtle库进行绘制,可在idle,pycharm下面直接打开~
最终效果图

                               
登录/注册后可看大图

python源代码:
# python绘制2022冬奥会吉祥物--冰墩墩

import turtle as t
from time import sleep

# 是否显示绘画过程
# t.tracer(False)

t.setup(800, 600)  # 设置窗体大小
t.title('冰墩墩')    # 更改窗口默认标题
t.speed(20)  # 设置画笔移动速度
# t.bgpic('dd.png')  # 找到一张简笔画,开始疯狂的测算描边
# 隐藏光标
t.hideturtle()

# 画出大致轮廓
#
#
# 画脑门
t.penup()  # 抬起画笔,不留下痕迹
t.goto(-73, 230)  # 设置起点
t.pencolor('lightgray')  # 画笔颜色
t.pensize(3)  # 画笔宽度
t.fillcolor('white')   # 绘制图形的填充色
t.begin_fill() # 从此处落笔开始,准备填充图形
t.pendown()    # 画笔落下,留下痕迹
t.setheading(20)   # 以 x 轴正方向为基准,设置当前朝向为 angle 角度
t.circle(-250, 35) # 画圆,1.半径;2.偏移角度
#
# 右耳
t.setheading(50)
t.circle(-42,180)
#
# 右侧脸与右侧肚子
t.setheading(-50)
t.circle(-190,30)
t.circle(-320,45)
#
# 右脚
t.circle(120,30)
t.circle(200,12)
t.circle(-18,85)
t.circle(-180,23)
t.circle(-20,110)
#
# 裤裆
t.circle(15,115)
t.circle(100, 12)
t.circle(15, 120)
#
# 左脚
t.circle(-15, 110)
t.circle(-150, 30)
t.circle(-15, 70)
t.circle(-150, 10)
#
# 左侧肚子
t.circle(200, 35)
t.circle(-150, 20)
#
# 左手
t.setheading(-120)
t.circle(50, 30)
t.circle(-35, 200)
t.circle(-300, 23)
#
# 左侧脸
t.setheading(86)
t.circle(-300, 26)
#
# 左耳
t.setheading(122)
t.circle(-53, 160)
t.end_fill()
#
# 补上右手
t.penup()
t.goto(177, 112)
t.pencolor("lightgray")
t.pensize(3)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(80)
t.circle(-45, 200)
t.circle(-300, 23)
t.end_fill()
#
#
# 画脸上的彩虹圈
t.penup()
t.goto(-135, 120)
t.pensize(5)
t.pencolor("cyan")
t.pendown()
t.setheading(60)
t.circle(-165, 150)
t.circle(-130, 78)
t.circle(-250, 30)
t.circle(-138, 105)
t.penup()
t.goto(-131, 116)
t.pencolor("slateblue")
t.pendown()
t.setheading(60)
t.circle(-160, 144)
t.circle(-120, 78)
t.circle(-242, 30)
t.circle(-135, 105)
t.penup()
t.goto(-127, 112)
t.pencolor("orangered")
t.pendown()
t.setheading(60)
t.circle(-155, 136)
t.circle(-116, 86)
t.circle(-220, 30)
t.circle(-134, 103)
t.penup()
t.goto(-123, 108)
t.pencolor("gold")
t.pendown()
t.setheading(60)
t.circle(-150, 136)
t.circle(-104, 86)
t.circle(-220, 30)
t.circle(-126, 102)
t.penup()
t.goto(-120, 104)
t.pencolor("greenyellow")
t.pendown()
t.setheading(60)
t.circle(-145, 136)
t.circle(-90, 83)
t.circle(-220, 30)
t.circle(-120, 100)
t.penup()
#
#
# 眼睛部分
#
# 左黑眼圈
t.penup()
t.goto(-64, 120)
t.pencolor("black")
t.pensize(1)
t.fillcolor('black')
t.begin_fill()
t.pendown()
t.setheading(40)
t.circle(-35, 152)
t.circle(-100, 50)
t.circle(-35, 130)
t.circle(-100, 50)
t.end_fill()
#
# 右黑眼圈
t.penup()
t.goto(51, 82)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(120)
t.circle(-32, 152)
t.circle(-100, 55)
t.circle(-25, 120)
t.circle(-120, 45)
t.end_fill()
#
#
# 填充黑色部分,从右耳开始,填充至右手
#
#
# 右耳黑
t.penup()
t.goto(90, 230)
t.pencolor('black')
t.pensize(1)
t.setheading(40)
t.fillcolor('black')
t.begin_fill()
t.pendown()
t.circle(-30, 170)
t.setheading(125)
t.circle(150, 23)
t.end_fill()
#
# 左耳黑
t.penup()
t.goto(-130, 180)
t.pencolor()
t.pensize(1)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(120)
t.circle(-28, 160)
t.setheading(210)
t.circle(150, 20)
t.end_fill()
#
# 左手黑
t.penup()
t.goto(-180, -55)
t.fillcolor()
t.begin_fill()
t.setheading(-120)
t.pendown()
t.circle(50, 30)
t.circle(-27, 200)
t.circle(-300, 20)
t.setheading(-90)
t.circle(300, 14)
t.end_fill()
#
# 左脚黑
t.penup()
t.goto(-38, -210)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(-155)
t.circle(15, 100)
t.circle(-10, 110)
t.circle(-100, 30)
t.circle(-15, 65)
t.circle(-100, 10)
t.circle(200, 15)
t.setheading(-14)
t.circle(-200, 27)
t.end_fill()
#
# 右脚黑
t.penup()
t.goto(108, -168)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(-115)
t.circle(110, 15)
t.circle(200, 10)
t.circle(-18, 80)
t.circle(-180, 13)
t.circle(-20, 90)
t.circle(15, 60)
t.setheading(42)
t.circle(-200, 29)
t.end_fill()
#
# 右手内部
t.penup()
t.goto(182, 95)
t.pencolor()
t.pensize(1)
t.fillcolor()
t.begin_fill()
t.setheading(95)
t.pendown()
t.circle(-37, 160)
t.circle(-20, 50)
t.circle(-200, 30)
t.end_fill()
#
#
# 画龙点睛作用
#
# 左眼珠子
t.penup()
t.goto(-47, 55)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(25, 360)
t.end_fill()
t.penup()
t.goto(-45, 62)
t.pencolor("darkslategray")
t.fillcolor("darkslategray")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(19, 360)
t.end_fill()
t.penup()
t.goto(-45, 68)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(10, 360)
t.end_fill()
t.penup()
t.goto(-47, 86)
t.pencolor("white")
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(5, 360)
t.end_fill()
#
# 右眼珠子
t.penup()
t.goto(79, 60)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(24, 360)
t.end_fill()
t.penup()
t.goto(79, 64)
t.pencolor("darkslategray")
t.fillcolor("darkslategray")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(19, 360)
t.end_fill()
t.penup()
t.goto(79, 70)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(10, 360)
t.end_fill()
t.penup()
t.goto(79, 88)
t.pencolor("white")
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(5, 360)
t.end_fill()
#
# 大黑鼻子
t.penup()
t.goto(37, 80)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.circle(-8, 130)
t.circle(-22, 100)
t.circle(-8, 130)
t.end_fill()
#
# 小嘴儿
t.penup()
t.goto(-15, 48)
t.setheading(-36)
t.begin_fill()
t.pendown()
t.circle(60, 70)
t.setheading(-132)
t.circle(-45, 100)
t.end_fill()
#
# 右手爱心
t.penup()

#
#
# 标识
# 文字具体位置需要微调
#
# 专属名
t.pencolor("black")
t.goto(-60, -140)
t.write("Joy's Bing Dwen Dwen", font=('Arial', 10, 'bold italic'))
#
# 奥运时间地点
t.pencolor('red')
t.goto(-36, -160)
t.write("BEIJING 2022", font=('Arial', 12, 'bold italic'))
#
# 奥运五环
t.penup()
t.goto(-5, -170)
t.pendown()
t.pencolor("blue")
t.circle(6)
t.penup()
t.goto(10, -170)
t.pendown()
t.pencolor("black")
t.circle(6)
t.penup()
t.goto(25, -170)
t.pendown()
t.pencolor("brown")
t.circle(6)
t.penup()
t.goto(2, -175)
t.pendown()
t.pencolor("lightgoldenrod")
t.circle(6)
t.penup()
t.goto(16, -175)
t.pendown()
t.pencolor("green")
t.circle(6)
t.penup()

t.done()

评分

参与人数 1荣誉 +5 鱼币 +5 贡献 +3 收起 理由
zy990106 + 5 + 5 + 3

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-19 18:42:45 | 显示全部楼层
每一步都注释的很详细,好评就是图片违规……
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-19 20:43:53 | 显示全部楼层

图片 违规 ?!

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-19 20:50:51 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-20 08:26:00 | 显示全部楼层
厉害,好评
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-20 09:10:47 | 显示全部楼层
厉害
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2022-2-20 14:30:44 | 显示全部楼层
tomok 发表于 2022-2-19 20:43
图片 违规 ?!

可能东奥会有吉祥物版权吧2333
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-20 14:32:28 | 显示全部楼层
洋洋痒 发表于 2022-2-19 18:42
每一步都注释的很详细,好评就是图片违规……

可能东奥会有吉祥物版权吧2333
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-22 15:41:16 | 显示全部楼层
tomok 发表于 2022-2-19 20:43
图片 违规 ?!

可能是因为冰墩墩的版权问题?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-23 11:46:39 | 显示全部楼层
还没试 先给个666
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-23 17:42:49 | 显示全部楼层
cywz 发表于 2022-2-22 15:41
可能是因为冰墩墩的版权问题?

yep~
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-24 07:52:01 | 显示全部楼层
smartsy 发表于 2022-2-23 11:46
还没试 先给个666

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-26 22:54:47 | 显示全部楼层
不错哦,学习收藏了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-26 23:19:11 | 显示全部楼层
厉害
收藏了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-2-28 12:48:21 | 显示全部楼层

谢谢大佬!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2024-9-13 18:48:46 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-16 10:29

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表