校徽怎么画(校徽怎么画又漂亮又简单)
今天整个人比较懒散,也不想学什么,毕竟是周末嘛!刚好组内老师开了一节用python绘图的课,所以今天也就来分享一个有意思的作品——用python画丹中校徽。
说起大丹中,历史还算蛮悠久的,明年就是80周年校庆了。省丹中全称是江苏省丹阳高级中学,前身为国立社教附中,1941年建校于四川青木关,1946年迁址江苏丹阳孔庙(现址)。丹中校徽的两大要素是笔架山和砚池水,这里面承载着每一个丹中学子最难忘的青春记忆。
好了,不多说了,分享下代码吧!
import turtlett=turtle.Turtle()tt.pencolor('orange')tt.speed(100)tt.up()tt.goto(-48,0)tt.down()tt.fillcolor('orange')tt.begin_fill()tt.goto(48,0)tt.left(120)tt.forward(47)tt.left(90)tt.forward(45)tt.right(60)tt.forward(25)tt.goto(-48,0)tt.end_fill()for i in range(4): tt.up() tt.setheading(-90) tt.forward(10) tt.left(90) tt.begin_fill() tt.forward(96) tt.right(90) tt.forward(8) tt.right(90) tt.forward(96) tt.right(90) tt.forward(8) tt.end_fill()#擦除不需要部分tt.pensize(5)tt.pencolor('white')tt.setheading(0)x=0for i in range(5): tt.up() tt.goto(0,-(50+x)) tt.down() tt.circle(50+x) x=x+4 tt.up()#绘制2道外圈tt.pensize(3)tt.goto(0,-52)tt.pencolor('orange')tt.down()tt.circle(52,360,180)tt.up()tt.goto(0,-72)tt.pensize(10)tt.pencolor('orange')tt.down()tt.circle(72,360,180)tt.up()#写上校名zh='江苏省丹阳高级中学'tt.goto(-52,-44)k=45for i in range(len(zh)): tt.setheading(-k) k=k-15 tt.write(zh[i]) tt.forward(16) tt.hideturtle()
哈哈,效果还算不错!当然还可以继续待优化,毕竟和真校徽细节还有些许出入。最后分享下大丹中的校歌,这个也是我比较喜欢的。
歌词:
松柏森森, 山色长春, 巍哉吾校, 屹立蜀山阴。抗战期中, 弦歌四起, 复兴民族, 发扬我中华民族之精神!旧学商量加邃密, 新知培养倍深沉。继往开来责在吾人! 继往开来责在吾人!
本文由美行思远留学整理发布,如若转载,请注明出处:https://www.mxsyedu.com/26621.html