欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基于Python實現(xiàn)煙花效果的示例代碼

 更新時間:2022年06月13日 09:37:40   作者:m0_54850467  
這篇文章主要為大家詳細介紹了如何利用Python制作出煙花的效果,文中的示例代碼講解詳細,對我們學習Python有一定幫助,需要的可以參考一下

python煙花代碼

如下

# -*- coding: utf-8 -*-

import math, random,time
import threading
import tkinter as tk
import re
#import uuid

Fireworks=[]
maxFireworks=8
height,width=600,600

class firework(object):
    def __init__(self,color,speed,width,height):
        #uid=uuid.uuid1()
        self.radius=random.randint(2,4)  #粒子半徑為2~4像素
        self.color=color   #粒子顏色
        self.speed=speed  #speed是1.5-3.5秒
        self.status=0   #在煙花未爆炸的情況下,status=0;爆炸后,status>=1;當status>100時,煙花的生命期終止
        self.nParticle=random.randint(20,30)  #粒子數(shù)量
        self.center=[random.randint(0,width-1),random.randint(0,height-1)]   #煙花隨機中心坐標
        self.oneParticle=[]    #原始粒子坐標(100%狀態(tài)時)
        self.rotTheta=random.uniform(0,2*math.pi)  #橢圓平面旋轉角

        #橢圓參數(shù)方程:x=a*cos(theta),y=b*sin(theta)
        #ellipsePara=[a,b]

        self.ellipsePara=[random.randint(30,40),random.randint(20,30)]   
        theta=2*math.pi/self.nParticle
        for i in range(self.nParticle):
            t=random.uniform(-1.0/16,1.0/16)  #產(chǎn)生一個 [-1/16,1/16) 的隨機數(shù)
            x,y=self.ellipsePara[0]*math.cos(theta*i+t), self.ellipsePara[1]*math.sin(theta*i+t)    #橢圓參數(shù)方程
            xx,yy=x*math.cos(self.rotTheta)-y*math.sin(self.rotTheta),  y*math.cos(self.rotTheta)+x*math.sin(self.rotTheta)     #平面旋轉方程
            self.oneParticle.append([xx,yy])
        
        self.curParticle=self.oneParticle[0:]     #當前粒子坐標
        self.thread=threading.Thread(target=self.extend)   #建立線程對象
        

    def extend(self):         #粒子群狀態(tài)變化函數(shù)線程
        for i in range(100):
            self.status+=1    #更新狀態(tài)標識
            self.curParticle=[[one[0]*self.status/100, one[1]*self.status/100] for one in self.oneParticle]   #更新粒子群坐標
            time.sleep(self.speed/50)
    
    def explode(self):
        self.thread.setDaemon(True)    #把現(xiàn)程設為守護線程
        self.thread.start()          #啟動線程
            

    def __repr__(self):
        return ('color:{color}
'  
                'speed:{speed}
'
                'number of particle: {np}
'
                'center:[{cx} , {cy}]
'
                'ellipse:a={ea} , b={eb}
'
                'particle:
{p}
'
                ).format(color=self.color,speed=self.speed,np=self.nParticle,cx=self.center[0],cy=self.center[1],p=str(self.oneParticle),ea=self.ellipsePara[0],eb=self.ellipsePara[1])


def colorChange(fire):
    rgb=re.findall(r'(.{2})',fire.color[1:])
    cs=fire.status
    
    f=lambda x,c: hex(int(int(x,16)*(100-c)/30))[2:]    #當粒子壽命到70%時,顏色開始線性衰減
    if cs>70:
        ccr,ccg,ccb=f(rgb[0],cs),f(rgb[1],cs),f(rgb[2],cs)
    else:
        ccr,ccg,ccb=rgb[0],rgb[1],rgb[2]
        
    return '#{0:0>2}{1:0>2}{2:0>2}'.format(ccr,ccg,ccb)



def appendFirework(n=1):   #遞歸生成煙花對象
    if n>maxFireworks or len(Fireworks)>maxFireworks:
        pass
    elif n==1:
        cl='#{0:0>6}'.format(hex(int(random.randint(0,16777215)))[2:])   # 產(chǎn)生一個0~16777215(0xFFFFFF)的隨機數(shù),作為隨機顏色
        a=firework(cl,random.uniform(1.5,3.5),width,height)
        Fireworks.append( {'particle':a,'points':[]} )   #建立粒子顯示列表,‘particle'為一個煙花對象,‘points'為每一個粒子顯示時的對象變量集
        a.explode()
    else:
        appendFirework()
        appendFirework(n-1)


def show(c):
    for p in Fireworks:                #每次刷新顯示,先把已有的所以粒子全部刪除
        for pp in p['points']:
            c.delete(pp)
    
    for p in Fireworks:                #根據(jù)每個煙花對象,計算其中每個粒子的顯示對象
        oneP=p['particle']
        if oneP.status==100:        #狀態(tài)標識為100,說明煙花壽命結束
            Fireworks.remove(p)     #移出當前煙花
            appendFirework()           #新增一個煙花
            continue
        else:
            li=[[int(cp[0]*2)+oneP.center[0],int(cp[1]*2)+oneP.center[1]] for cp in oneP.curParticle]       #把中心為原點的橢圓平移到隨機圓心坐標上
            color=colorChange(oneP)   #根據(jù)煙花當前狀態(tài)計算當前顏色
            for pp in li:
                p['points'].append(c.create_oval(pp[0]-oneP.radius,  pp[1]-oneP.radius,  pp[0]+oneP.radius,  pp[1]+oneP.radius,  fill=color))  #繪制煙花每個粒子

    root.after(50, show,c)  #回調,每50ms刷新一次

if __name__=='__main__':
    appendFirework(maxFireworks)
    
    root = tk.Tk()
    cv = tk.Canvas(root, height=height, width=width)
    cv.create_rectangle(0, 0, width, height, fill="black")

    cv.pack()

    root.after(50, show,cv)
    root.mainloop()

圖片展示

到此這篇關于基于Python實現(xiàn)煙花效果的示例代碼的文章就介紹到這了,更多相關Python煙花內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

  • python解析發(fā)往本機的數(shù)據(jù)包示例 (解析數(shù)據(jù)包)

    python解析發(fā)往本機的數(shù)據(jù)包示例 (解析數(shù)據(jù)包)

    這篇文章主要介紹了使用python解析獲取發(fā)往本機的數(shù)據(jù)包,并打印出來, 大家參考使用吧
    2014-01-01
  • 2021年的Python 時間軸和即將推出的功能詳解

    2021年的Python 時間軸和即將推出的功能詳解

    這篇文章主要介紹了2021年的Python 時間軸和即將推出的功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-07-07
  • Django框架models使用group by詳解

    Django框架models使用group by詳解

    這篇文章主要介紹了Django框架models使用group by詳解,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-03-03
  • Python讀取文件內容為字符串的方法(多種方法詳解)

    Python讀取文件內容為字符串的方法(多種方法詳解)

    這篇文章主要介紹了Python讀取文件內容為字符串的方法,本文通過三種方式給大家介紹,在文章末尾給大家提到了python讀取txt文件中字符串,字符串用空格分隔的相關知識,需要的朋友可以參考下
    2020-03-03
  • CentOS下使用yum安裝python-pip失敗的完美解決方法

    CentOS下使用yum安裝python-pip失敗的完美解決方法

    這篇文章主要介紹了CentOS下使用yum安裝python-pip失敗的完美解決方法,需要的朋友可以參考下
    2017-08-08
  • python?中defaultdict()對字典進行初始化的用法介紹

    python?中defaultdict()對字典進行初始化的用法介紹

    這篇文章主要介紹了python?中defaultdict()對字典進行初始化,一般情況下,在使用字典時,先定義一個空字典(如dict_a?=?{}),然后往字典中添加元素只需要?dict_a[key]?=?value即可,本文通過實例代碼介紹具體用法,需要的朋友可以參考下
    2022-07-07
  • 基于wxpython實現(xiàn)的windows GUI程序實例

    基于wxpython實現(xiàn)的windows GUI程序實例

    這篇文章主要介紹了基于wxpython實現(xiàn)的windows GUI程序,實例分析了windows GUI程序的相關實現(xiàn)技巧,需要的朋友可以參考下
    2015-05-05
  • 怎么使用python生成詞云圖

    怎么使用python生成詞云圖

    這篇文章主要給大家介紹了關于怎么使用python生成詞云圖的相關資料,詞云圖主要用途是將文本數(shù)據(jù)中出現(xiàn)頻率較高的關鍵詞以可視化的形式展現(xiàn)出來,使人一眼就可以領略文本數(shù)據(jù)的主要表達意思,需要的朋友可以參考下
    2023-06-06
  • Python給文件夾加解密的實現(xiàn)

    Python給文件夾加解密的實現(xiàn)

    數(shù)據(jù)泄露已經(jīng)成為一個嚴重的問題,為了保護用戶和公司的隱私,給文件夾加密已經(jīng)成為一個必要的步驟,本文主要介紹了Python給文件夾加解密的實現(xiàn),感興趣的可以了解一下
    2023-11-11
  • OpenCV-Python實現(xiàn)圖像平滑處理操作

    OpenCV-Python實現(xiàn)圖像平滑處理操作

    圖像平滑處理的噪聲取值主要有6種方法,本文主要介紹了這6種方法的具體使用并配置實例方法,具有一定的參考價值,感興趣的可以了解一下
    2021-06-06

最新評論