首页
/
每日頭條
/
生活
/
皮卡丘的進化型雷丘怎麼畫
皮卡丘的進化型雷丘怎麼畫
更新时间:2024-11-10 19:56:03
前言

大家好,我是栗子,歡迎大家閱讀文章~

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)1

嘿嘿,這款表情包是不是敲可愛啊~我想很多小夥伴兒都用過的哈,

“皮卡丘果然是吃可愛多長大的吧!”

​如此可愛的皮卡丘,做成表情包後更是萌度爆棚!可愛到無法呼吸!這一套表情包栗子不知道收集了多少:呐~

今天栗子帶大家進入皮卡丘的世界吧,利用Turtle繪制可可愛愛的多種皮卡丘哦~

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)2

正文

開始啦~繪制可可愛愛的皮卡丘,我先來~總有4款不一樣的皮卡丘哦,你喜歡那款呢?

(1)Part 1 繪制01皮卡丘

​1.1 附完整代碼

# coding:utf-8 from turtle import * import turtle as t from random import * def infoPrt(): print('coordinate: ' str(t.pos())) print('angle: ' str(t.heading())) t.pensize(3) t.hideturtle() t.colormode(255) t.color("black") t.setup(700, 650) t.speed(1) t.st() #t.dot() t.pu() #t.goto(-150,100) t.goto(-210,86) t.pd() infoPrt() # 頭 print('頭') t.seth(85) t.circle(-100,50) #t.seth(78) #t.circle(-100,25) infoPrt() t.seth(25) t.circle(-170,50) infoPrt() # 右耳 print('右耳') t.seth(40) #t.circle(-250,52) t.circle(-250,30) infoPrt() # 右耳尖 t.begin_fill() # 左 t.circle(-250,22) #t.fillcolor("pink") # 右 t.seth(227) t.circle(-270, 15) prePos = t.pos() infoPrt() # 下 t.seth(105) t.circle(100, 32) t.end_fill() t.pu() t.setpos(prePos) t.pd() t.seth(212) t.circle(-270, 28) prePos = t.pos() t.pu() t.goto(t.xcor() 5,t.ycor()-2) t.pd() # 軀幹 print('軀幹') t.seth(280) t.circle(500, 30) infoPrt() # 臀部 print('臀部') t.seth(120) #t.circle(150, -55) t.circle(150, -11) p_tail=t.pos() t.circle(150, -44) p_butt=t.pos() infoPrt() # 尾巴 t.pu() t.setpos(p_tail) t.pd() t.begin_fill() t.seth(50) t.fd(25) t.seth(-50) t.fd(30) p_tail1=t.pos t.seth(-140) t.fd(36) t.end_fill() t.seth(39) # 右尾和h1 t.fd(72) # 右尾和v1 t.seth(125) t.fd(48) # 右尾和h2 t.seth(40) t.fd(53) # 右尾和v2 t.seth(88) t.fd(45) # 右尾和h3 t.seth(35) t.fd(105) # 右尾和v3 t.seth(105) t.circle(850, 8) #t.fd(105) t.seth(215) #t.fd(125) t.circle(850, 11) t.seth(280) t.fd(110) t.seth(220) t.fd(50) t.seth(309) t.fd(56) # 底盤 print('底盤') t.pu() t.setpos(p_butt) t.pd() t.seth(20) t.circle(120, -45) infoPrt() t.seth(330) t.circle(-150, -30) infoPrt() prePos = t.pos() t.pu() t.goto(t.xcor() 20,t.ycor()) t.pd() t.seth(230) t.circle(-70, 120) p_bot=t.pos() # 兩腳-right t.pu() t.setpos(p_butt) t.setpos(t.xcor() 5,t.ycor() 5) t.pd() t.seth(-86) t.fd(30) t.seth(-93) t.fd(33) t.seth(-225) t.circle(-150, 22) # 兩腳-left t.pu() t.setpos(p_bot) t.setpos(t.xcor() 85,t.ycor()-43) t.pd() t.seth(-105) t.fd(50) t.seth(-225) t.circle(-150, 22) # 左軀幹 print('軀幹') t.pu() t.setpos(p_bot) t.pd() t.seth(90) t.circle(450, 13) p_lfhd = t.pos() t.circle(450, 5) t.pu() t.circle(450, 5) t.pd() t.circle(450, 6) infoPrt() # 左臉 t.begin_fill() t.fillcolor("pink") print('左臉') t.seth(330) t.circle(50, -90) infoPrt() # 左酒窩 t.seth(30) t.circle(-15, 120) t.seth(-70) t.circle(-30, 90) t.end_fill() # 左手 t.pu() t.setpos(p_lfhd) t.pd() t.seth(160) t.circle(150, 30) infoPrt() t.seth(180) t.circle(-30, 150) t.fd(67) t.pu() t.setpos(t.xcor()-40,t.ycor()-60) t.pd() t.seth(200) t.circle(-5, 180) # 右手 t.pu() t.setpos(p_lfhd) t.setpos(t.xcor() 180,t.ycor() 5) t.pd() t.seth(200) t.circle(-50, 100) t.pu() t.circle(-50, 15) t.pd() t.circle(-50, 65) t.pu() t.setpos(t.xcor() 10,t.ycor()-45) t.pd() #t.seth(270) #t.circle(-30, -180) t.seth(80) t.fd(10) t.seth(165) t.circle(10, 60) t.seth(90) t.fd(5) t.seth(165) t.circle(10, 60) t.seth(95) t.fd(5) t.seth(185) t.circle(10, 60) t.seth(105) t.fd(10) t.seth(230) t.fd(20) t.seth(145) t.fd(10) t.seth(285) t.fd(20) # 右酒窩 t.begin_fill() t.fillcolor("pink") t.pu() t.setpos(t.xcor()-40,t.ycor() 110) t.pd() t.circle(27, 360) t.end_fill() #x-20 ,y 50 """畫嘴""" color("black", "#F35590") # 下嘴弧度并填充顔色 penup() goto(-100, 72) pendown() begin_fill() setheading(260) forward(60) circle(-11, 150) forward(55) print(position()) penup() goto(-128.46, 71.97) pendown() end_fill() #嘴中最上方的陰影部分 color("#6A070D", "#6A070D") begin_fill() penup() goto(-99.00, 72.00) pendown() penup() goto(-104.29, 48.3) pendown() penup() goto(-142, 45) pendown() penup() goto(-150.40, 62.74) pendown() penup() goto(-128.46, 71.97) pendown() penup() goto(-99.00, 72.00) pendown() end_fill() #上嘴唇 color("black","#FFD624") penup() goto(-168, 65) pendown() begin_fill() setheading(-25) for i in range(2): setheading(-25) circle(35, 70) end_fill() #嘴中第二個陰影部分 color("#AB1945", "#AB1945") penup() goto(-142, 45) pendown() begin_fill() setheading(40) circle(-33, 70) goto(-104,48.3) penup() goto(-108,33) pendown() setheading(155) circle(25, 70) end_fill() # 左眼 t.pu() t.color("black") t.setpos(t.xcor()-40,t.ycor() 90) t.pd() t.circle(5) t.pu() t.setpos(t.xcor() 5,t.ycor() 10) t.pd() t.begin_fill() t.seth(190) t.circle(15, 130) t.seth(310) t.circle(10, 15) t.seth(0) t.circle(17, 133) t.seth(90) t.circle(10, 15) t.end_fill() t.pu() t.setpos(t.xcor() 2,t.ycor()-15) t.pd() t.color("white") t.begin_fill() t.circle(5) t.end_fill() # 右眼 t.pu() t.setpos(t.xcor() 85,t.ycor() 15) t.pd() t.color("black") t.circle(5) t.pu() t.setpos(t.xcor() 5,t.ycor() 10) t.pd() t.begin_fill() t.seth(190) t.circle(20, 130) t.seth(310) t.circle(10, 15) t.seth(0) t.circle(22, 133) t.seth(90) t.circle(13, 15) t.end_fill() t.pu() t.setpos(t.xcor()-7,t.ycor()-15) t.pd() t.color("white") t.begin_fill() t.circle(7) t.end_fill() # 左耳 t.color("black") t.pu() t.goto(-210,86) t.setpos(t.xcor() 15,t.ycor() 38) t.pd() t.seth(90) t.circle(-250,30) t.begin_fill() # 左 t.circle(-250,18) # 右 t.seth(270) t.circle(-270, 12) prePos = t.pos() # 下 t.seth(180) t.circle(100, 30) t.end_fill() t.pu() t.setpos(prePos) t.pd() t.seth(270) t.circle(-270, 18) t.screensize(50,50,bg='yellow') # 輸出文字 printer = t.Turtle() printer.hideturtle() printer.penup() printer.goto(-350,-100) printer.write("皮\n\n",move = True, align="left", font=("楷體", 30, "bold")) printer.goto(-350,-150) printer.write("卡\n\n",move = True, align="left", font=("楷體", 30, "bold")) printer.goto(-350,-200) printer.write("丘\n\n",move = True, align="left", font=("楷體", 30, "bold")) printer.goto(-350,-250) printer.write("吖!\n\n",move = True, align="left", font=("楷體", 30, "bold")) t.hideturtle()

1.2 展示效果——

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)3

(2)Part 2 繪制02皮卡丘

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)4

(3)Part 3 繪制03皮卡丘

​​

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)5

(4)Part 4 繪制04皮卡丘

總結

ok~文章寫完了哈,這四款都有完整的源碼滴,需要的點擊下方藍色字體跳轉哈~等你來拿!

免費項目領取

源碼基地:私信小編06即可獲取

皮卡丘的進化型雷丘怎麼畫(超火皮卡丘大全)6

,
Comments
Welcome to tft每日頭條 comments! Please keep conversations courteous and on-topic. To fosterproductive and respectful conversations, you may see comments from our Community Managers.
Sign up to post
Sort by
Show More Comments
推荐阅读
趙薇陳坤同班同學現狀
趙薇陳坤同班同學現狀
說到孔維這個人,很多人會問,孔維是誰?是明星嗎?演員嗎?是的,她是科班出身的演員,北京電影學院96級表演系學生,如今娛樂圈紅人趙薇、黃曉明、陳坤的班長。01緣,她結識了演員考北京電影學院并不在孔維的計劃之内。因為從小被家人戲稱“醜小孩”的孔...
2024-11-10
碧玉和翡翠
碧玉和翡翠
碧玉和翡翠?顔色綠色翡翠的顔色主要是由鉻離子和二價鐵離子造成的鉻離子緻色的翡翠呈現翠綠色,顔色很鮮豔而二價鐵離子緻色的翡翠顔色呈現暗的灰綠色常見的油青種翡翠是2價鐵離子緻色,顔色是灰綠色的碧玉的顔色一般呈現暗綠色翡翠的顔色多不均勻,常有顔色...
2024-11-10
植物的開花時間和開花狀态
植物的開花時間和開花狀态
植物的開花時間和開花狀态?女貞花開于夏初,她從強陽光段初始綻放,到夏至前,太陽黑子被女貞吸收了,證明藥性陰陽是互相的槐樹今年2022奇熱之夏結果特别旺盛,證明了她對熱的吸收特長,枇杷花秋盛,證明她金秋肅殺之氣旺盛,涼肺退熱一步古代先賢論述在...
2024-11-10
危情十日凱西貝茨
危情十日凱西貝茨
老媽來了時光網訊據美國媒體報道,奧斯卡影後凱西·貝茨将加盟喜劇片《聖誕壞公公2》,她将飾演“聖誕老人”比利·鮑伯·松頓的老媽。2003年上映的《聖誕壞公公》是一部R級喜劇,粗口、黃段子成為亮點之一,而凱西·貝茨飾演的老媽也是個滿口髒話的野蠻...
2024-11-10
特朗普再次發文甩鍋
特朗普再次發文甩鍋
(一)有一種人,明明自己錯了,但總是很不服氣,總喜歡嘴巴裡嘟嘟囔囔饒上一句。本來一些可以很快平息的事情,因為這種嘟囔,突然又變得一發不可收拾。特朗普最近肯定就有類似的感受。讓他又卷入新一輪鬥争的,就是他的這張嘴巴,這件沸沸揚揚的事情,大緻脈...
2024-11-10
Copyright 2023-2024 - www.tftnews.com All Rights Reserved