python畫小黃人

import turtle as t

t.pensize(4)
t.speed(10)


def head():
	t.penup()
	t.fillcolor("#FFEE26")
	t.goto(-130, 10)
	t.pendown()
	t.begin_fill()
	t.seth(81)
	t.fd(90)
	t.seth(100)
	t.circle(-500, 3)
	t.circle(-100, 10)
	t.circle(-200, 25)
	t.circle(-110, 20)
	t.circle(-140, 30)
	t.circle(-180, 30)
	t.circle(-200, 20)
	t.circle(-140, 10)
	t.circle(-160, 50)
	t.seth(85)
	t.fd(-148)
	t.seth(-112)
	t.circle(-250, 14)
	t.fd(200)
	t.right(80)
	t.fd(190)
	t.seth(110)
	t.circle(-200, 7)
	t.circle(-130, 30)
	t.end_fill()

def forefoot():
	t.begin_fill()
	t.penup()
	t.goto(-120, -250)
	t.pendown()
	t.fillcolor("#030003")
	t.setheading(-135)
	t.circle(60, 20)
	t.fd(35)
	t.circle(20, 160)
	t.circle(100, 10)
	t.fd(20)
	t.goto(-120, -250)
	t.end_fill()

def hindleg():
	t.begin_fill()
	t.color("black", "#0045D9")
	t.penup()
	t.goto(-50, -300)
	t.pendown()
	t.setheading(-150)
	t.circle(-80, 60)
	t.setheading(90)
	t.circle(-40, 67)
	t.seth(-30)
	t.goto(-50, -300)
	t.end_fill()


def cloths():
	t.begin_fill()
	t.penup()
	t.goto(-45, -70)
	t.pendown()
	t.fillcolor("#0045D9")
	t.setheading(-15)
	t.circle(500, 5)
	t.circle(400, 26)
	t.seth(-112)
	t.circle(-250, 7)
	t.seth(-69)
	t.circle(-250, 7)
	t.right(15)
	t.circle(-320, 18)
	t.circle(-330, 10)
	t.fd(80)
	t.right(81)
	t.fd(190)
	t.seth(141)
	t.circle(-180, 15)
	t.circle(-150, 30)
	t.right(6)
	t.circle(-90, 15)
	t.seth(-45)
	t.circle(50, 10)
	t.seth(-30)
	t.circle(200, 20)
	t.circle(150, 10)
	t.seth(92)
	t.circle(500, 10)
	t.setheading(75)
	t.goto(-45, -70)
	t.end_fill()

def pocket():
	t.begin_fill()
	t.penup()
	t.goto(52, -120)
	t.pendown()
	t.fillcolor("#BFC5AD")
	t.seth(-15)
	t.circle(200, 25)
	t.seth(-88)
	t.circle(-200, 18)
	t.seth(-150)
	t.circle(-90, 5)
	t.right(10)
	t.circle(-90, 45)
	t.right(20)
	t.circle(-50, 50)
	t.goto(52, -120)
	t.end_fill()


	t.begin_fill()
	t.penup()
	t.goto(70, -155)
	t.pendown()
	t.fillcolor("#0045D9")
	t.circle(-25)
	t.end_fill()
	t.penup()
	t.goto(120, -160)
	t.pencolor("#5C7F58")
	t.pendown()
	t.seth(180)
	t.fd(20)
	t.right(60)
	t.circle(6, 340)
	t.pencolor("black")

def button():
	t.begin_fill()
	t.penup()
	t.fillcolor("#FFFFFF")
	t.goto(-40, -80)
	t.pendown()
	t.seth(0)
	t.circle(-9, 360)
	t.end_fill()

def lefthand():
	t.begin_fill()
	t.penup()
	t.fillcolor("#FFEE26")
	t.goto(195, -56)
	t.pendown()
	t.seth(-8)
	t.circle(150, 15)
	t.circle(25, 40)
	t.left(2)
	t.fd(60)
	t.right(85)
	t.fd(28)
	t.right(92)
	t.fd(45)
	t.circle(-100, 20)
	t.circle(-80, 40)
	t.circle(80, 13)
	t.goto(195, -56)
	t.end_fill()

head()
forefoot()
hindleg()
cloths()
pocket()
button()
lefthand()

參考鏈接:https://www.sohu.com/a/290653432_120050566

不過,這個小黃人看起來比較奇怪

再來看一個小黃人 

import turtle
t = turtle.Turtle()
wn = turtle.Screen()
turtle.colormode(255)
t.hideturtle()
t.speed(0)
t.penup()
t.pensize(4)
t.goto(100,0)
t.pendown()
t.left(90)
t.color((0,0,0),(255,255,0))
#身體繪製上色
t.begin_fill()
t.forward(200)
t.circle(100,180)
t.forward(200)
t.circle(100,180)
t.end_fill()
#右眼睛繪製上色
t.pensize(12)
t.penup()
t.goto(-100,200)
t.pendown()
t.right(100)
t.circle(500,23)

t.pensize(3)
t.penup()
t.goto(0,200)
t.pendown()
t.seth(270)
t.color("black","white")
t.begin_fill()
t.circle(30)
t.end_fill()

t.penup()
t.goto(15,200)
t.pendown()
t.color("black","black")
t.begin_fill()
t.circle(15)
t.end_fill()

t.penup()
t.goto(35,205)
t.color("black","white")
t.begin_fill()
t.circle(5)
t.end_fill()
#左眼睛繪製上色
t.pensize(3)
t.penup()
t.goto(0,200)
t.pendown()
t.seth(90)
t.color("black","white")
t.begin_fill()
t.circle(30)
t.end_fill()

t.penup()
t.goto(-15,200)
t.pendown()
t.color("black","black")
t.begin_fill()
t.circle(15)
t.end_fill()

t.penup()
t.goto(-35,205)
t.color("black","white")
t.begin_fill()
t.circle(5)
t.end_fill()

#嘴繪製上色
t.penup()
t.goto(-20,100)
t.pendown()
t.seth(270)
t.color("black","white")
t.begin_fill()
t.circle(20,180)
t.left(90)
t.forward(40)
t.end_fill()

#褲子繪製上色
t.penup()
t.goto(-100,0)
t.pendown()
t.seth(0)
t.color("black","blue")
t.begin_fill()
t.forward(20)
t.left(90)
t.forward(40)
t.right(90)
t.forward(160)
t.right(90)
t.forward(40)
t.left(90)
t.forward(20)
t.seth(270)
t.penup()
t.goto(-100,0)
t.circle(100,180)
t.end_fill()

#左褲子腰帶
t.penup()
t.goto(-70,20)
t.pendown()
t.color("black","blue")
t.begin_fill()
t.seth(45)
t.forward(15)
t.left(90)
t.forward(60)
t.seth(270)
t.forward(15)
t.left(40)
t.forward(50)
t.end_fill()
t.left(180)
t.goto(-70,30)
t.dot()

#右褲腰帶
t.penup()
t.goto(70,20)
t.pendown()
t.color("black","blue")
t.begin_fill()
t.seth(135)
t.forward(15)
t.right(90)
t.forward(60)
t.seth(270)
t.forward(15)
t.right(40)
t.forward(50)
t.end_fill()

t.left(180)
t.goto(70,30)

t.dot()



#腳

t.penup()
t.goto(4,-100)
t.pendown()
t.seth(270)
t.color("black","black")
t.begin_fill()
t.forward(30)
t.left(90)
t.forward(40)
t.seth(20)
t.circle(10,180)
t.circle(400,2)
t.seth(90)
t.forward(20)
t.goto(4,-100)
t.end_fill()

t.penup()
t.goto(-4,-100)
t.pendown()
t.seth(270)
t.color("black","black")
t.begin_fill()
t.forward(30)
t.right(90)
t.forward(40)
t.seth(20)
t.circle(10,-225)
t.circle(400,-3)
t.seth(90)
t.forward(21)
t.goto(-4,-100)
t.end_fill()




#左手
t.penup()
t.goto(-100,50)
t.pendown()
t.seth(225)
t.color("black","yellow")
t.begin_fill()
t.forward(40)
t.left(90)
t.forward(35)
t.seth(90)
t.forward(50)
t.end_fill()
#右手
t.penup()
t.goto(100,50)
t.pendown()
t.seth(315)
t.color("black","yellow")
t.begin_fill()
t.forward(40)
t.right(90)
t.forward(36)
t.seth(90)
t.forward(50)
t.end_fill()

#
t.penup()
t.goto(0,-100)
t.pendown()
t.forward(30)

#
t.penup()
t.goto(0,-20)
t.pendown()
t.color("yellow")
t.begin_fill()
t.seth(45)
t.forward(20)
t.circle(10,180)
t.right(90)
t.circle(10,180)
t.forward(20)
t.end_fill()

#
t.penup()
t.color("black")
t.goto(-100,-20)
t.pendown()
t.circle(30,90)

t.penup()
t.goto(100,-20)
t.pendown()
t.circle(30,-90)
#頭頂
t.penup()
t.goto(2,300)
t.pendown()
t.begin_fill()
t.seth(135)
t.circle(100,40)
t.end_fill()

t.penup()
t.goto(2,300)
t.pendown()
t.begin_fill()
t.seth(45)
t.circle(100,40)
t.end_fill()

參考鏈接:https://www.cnblogs.com/jennyzhangeducation/p/10704190.html

 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章