旋转散射背景动画

旋转散射背景动画

python rotate scattered background animation旋转散射背景动画

python rotate scattered animation

python rotate scattered animation


背景动画都是画出来的,用的turtle模块制作。

"""
   旋转散射背景by李兴球
"""

import time
import math
from turtle import *

A = math.sin(math.radians(15))

def draw_triangle(t):
    """画等腰三角形"""
    t.begin_fill()          # 开始填充
    t.fd(300)               # 移动30
    t.right(105)            # 右转105度
    t.fd(600* A)            # 前进600*A
    t.right(105)            # 右转105度
    t.fd(300)               # 前进300 
    t.end_fill()            # 结束填充 
    t.right(150)

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

李兴球

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

评论已关闭。