admin管理员组文章数量:1794759
校徽
import turtle as t
import time#新增外圈
t.penup() #抬起画笔
t.goto(0,-306) #移动到相应坐标(0,-300)
t.pendown() #放下画笔
t.begin_fill() #准备开始填充图形
t.fillcolor("white")#填充颜色:深橄榄绿
t.pensize(3) #画笔宽度为6
t.pencolor("black") #小圈描边
t.speed(0)
t.circle(306)
t.end_fill()
t.penup()#大圈1
t.penup() #抬起画笔
t.goto(0,-300) #移动到相应坐标(0,-300)
t.pendown() #放下画笔
t.begin_fill() #准备开始填充图形
t.fillcolor("white") #填充颜色
t.pensize(3) #画笔宽度为4
t.pencolor("black") #画笔颜色,也可以是RGB3元组
t.speed(0) #画笔移动速度,范围[0,10]整数
t.circle(300) #画圆:半径300
t.end_fill() #填充完成
t.penup() #提起笔移动,不绘制图形,用于另起一个地方绘制#小圈
t.goto(0,-220) #移动到相应坐标(0,-220)
t.pendown() #移动时绘制图形,缺省时也为绘制
t.begin_fill() #准备开始填充图形
t.fillcolor("white")#填充颜色
t.pensize(9) #画笔宽度为7
t.pencolor("gray") #小圈描边
t.speed(0)
t.circle(210)
t.end_fill()
t.penup()#数字2000
t.goto(-30,-180)
t.pendown()
t.pencolor("#af0f2d")
t.write("2",font=("黑体",35,"normal"))
t.penup()
t.goto(-10,-180)
t.pendown()
t.write("0",font=("黑体",35,"normal"))
t.penup()
t.goto(10,-180)
t.pendown()
t.write("0",font=("黑体",35,"normal"))
t.penup()
t.goto(30,-180)
t.pendown()
t.write("0",font=("黑体",35,"normal"))
t.penup()t.pensize(5)
t.pencolor("#005a8c")#Q
t.pu() #提起笔移动,不绘制图形,用于另起一个地方绘制
t.goto(-250,-20)
t.pd()
t.circle(-16,360)
t.pu()t.goto(-250,-40)
t.pd()
t.seth(-110)
t.forward(20)#U
t.penup()
t.goto(-230,-65)
t.pendown()
t.seth(-170)
t.forward(27)
t.circle(9,180)
t.penup()t.goto(-225,-83)
t.pendown()
t.seth(-170)
t.forward(27)#J
t.penup()
t.goto(-220,-110)
t.pendown()
t.seth(-165)
t.forward(27)
t.circle(-9,180)
t.penup()#I
t.penup()
t.goto(-215,-123)
t.pendown()
t.seth(-160)
t.forward(32)
t.penup()#N
t.penup()
t.goto(-210,-135)
t.pendown()
t.seth(-155)
t.forward(32)
t.penup()t.penup()
t.goto(-210,-135)
t.pendown()
t.seth(-122)
t.forward(35)
t.penup()t.penup()
t.goto(-202,-150)
t.pendown()
t.seth(-148)
t.forward(32)
t.penup()#G
t.penup()
t.goto(-195,-195)
t.pendown()
t.seth(21)
t.circle(16,-290)
t.penup()t.goto(-195,-195)
t.pendown()
t.seth(130)
t.forward(12)
t.penup()t.goto(-195,-195)
t.pendown()
t.seth(-150)
t.forward(13)#N
t.penup()
t.goto(-150,-200)
t.pendown()
t.seth(-130)
t.forward(32)
t.penup()t.penup()
t.goto(-150,-200)
t.pendown()
t.seth(-90)
t.forward(35)
t.penup()t.penup()
t.goto(-132,-212)
t.pendown()
t.seth(-127)
t.forward(32)
t.penup()#O
t.penup()
t.goto(-105,-245)
t.pendown()
t.circle(-16,360)#R
t.penup()
t.goto(-88,-232)
t.pendown()
t.seth(-120)
t.forward(32)
t.penup()t.penup()
t.goto(-88,-232)
t.pendown()
t.seth(-25)
t.forward(10)
t.circle(-9,180)
t.forward(10)
t.pendown()t.seth(-65)
t.forward(22)#M
t.pu()
t.goto(-63,-243)
t.pendown()
t.seth(-115)
t.forward(32)t.pu()
t.goto(-63,-243)
t.pendown()
t.seth(-93)
t.forward(32)t.pu()
t.goto(-48,-248)
t.pendown()
t.seth(-120)
t.forward(32)t.pu()
t.goto(-48,-248)
t.pendown()
t.seth(-100)
t.fd(32)#A
t.pu()
t.goto(-30,-252)
t.pendown()
t.seth(-115)
t.forward(32)t.pu()
t.goto(-30,-252)
t.pendown()
t.seth(-83)
t.fd(32)t.pu()
t.goto(-35,-272)
t.pendown()
t.seth(-5)
t.fd(5)#L
t.pu()
t.goto(-10,-252)
t.pendown()
t.seth(-100)
t.fd(32)t.seth(-5)
t.fd(20)
t.pd()#中文
t.pu()
t.goto(-270,50)
t.pendown()
t.pencolor("#af0f2d")
t.write("曲",font=("曲师二爨培生字库",50,"normal"))
t.penup()
t.goto(-205,140)
t.pendown()
t.write("靖",font=("曲师二爨培生字库",50,"normal"))
t.penup()
t.goto(-100,200)
t.pendown()
t.write("师",font=("曲师二爨培生字库",50,"normal"))
t.penup()
t.goto(30,200)
t.pendown()
t.write("范",font=("曲师二爨培生字库",50,"normal"))
t.penup()
t.goto(140,140)
t.pendown()
t.write("学",font=("曲师二爨培生字库",50,"normal"))
t.penup()
t.goto(200,50)
t.pendown()
t.write("院",font=("曲师二爨培生字库",50,"normal"))
t.penup()#落款
t.goto(200,-300)
t.pendown()
t.pencolor("red")
t.write("QJNU",font=("微软雅黑",30,"normal"))
t.hideturtle()
t.penup()
本文标签: 校徽
版权声明:本文标题:校徽 内容由林淑君副主任自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.xiehuijuan.com/baike/1706764989a534177.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论