钻石情缘_图章动画与复合形状

钻石情缘_图章动画与复合形状

python turtle compoundshape and stamp animation钻石情缘

python turtle compoundshape and stamp animation钻石情缘

python turtle compoundshape and stamp animation钻石情缘


钻石,舞台,Python,海龟,图章,形状,动画的结合体。以下是部分代码预览:

"""
钻石情缘.py
不好给这个作品取什么名字,暂且用这个名字吧。
这个程序演示了复合形状如何设定。动画中连一个海龟都没有新建。
为什么却有这么多形状,这是用图章实现的,问题是图章不是静止的吗?
为什么图章们会旋转起来呢?对于你来说可能是个谜!

"""
from turtle import *

diamondshape = Shape("compound")          # 新建复合形状

poly1 = ((-7,-7), (7,-7), (7,7), (7,-7))  # 右下灰折线
diamondshape.addcomponent(poly1, "gray")
poly2 = ((-7,-7), (-7,7), (7,7), (-7,7))
diamondshape.addcomponent(poly2, "pink")  # 左上粉红折线
register_shape("diamond", diamondshape)   # 合起来是正方形

bgcolor("pink")
setup(800,600)
bgpic('舞台钻石背景.png')
shape("diamond")
shearfactor(0.3)
pu()
ht()
pass

如需要查看完整代码,请

成为会员后,登陆才能继续浏览!联系微信scratch8即可办理会员。
(会员专属:能浏览所有文章,下载所有带链接的Python资源。)

李兴球

李兴球的博客是Python创意编程原创博客

评论已关闭。