旋转的太极图动画源代码

旋转的太极图动画源代码

python rotated yinyan animation旋转的太极图

python rotated yinyan animation旋转的太极图

python rotated yinyan animation旋转的太极图


这里用海龟画图turtle模块画了一个太级图,然后让它旋转起来了。以下是代码预览:

"""
   旋转的太极图.py
   一切都是画出来的。
"""
from turtle import *
from time import sleep

def draw_taiji(t,radius):
    "画太极图函数"""
    t.color('black','white')
    t.begin_fill()
    t.circle(radius,180)
    t.circle(2*radius,180)
    t.right(180)
    t.circle(-radius,180)
    t.end_fill()
    
    t.right(180)
    t.color('black')
    t.begin_fill()
    t.circle(radius,180)
    t.circle(2*radius,180)
    t.right(180)
    t.circle(-radius,180)
    t.end_fill()

 
需要完整代码请

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

李兴球

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

评论已关闭。