zoukankan      html  css  js  c++  java
  • python开发_thread_布朗运动

    这篇blog是非常有趣的,是的,他非常有趣

    下面我将给大家介绍有关python中thread来实现布朗运动的一个例子

    下面是运行效果:

    布朗运行

    ===================================================

    代码部分:

    ===================================================

     1 # Brownian motion -- an example of a multi-threaded Tkinter program.
     2 
     3 from tkinter import *
     4 import random
     5 import threading
     6 import time
     7 import sys
     8 
     9 #画布大小
    10 WIDTH = 400
    11 HEIGHT = 300
    12 SIGMA = 10
    13 BUZZ = 2
    14 RADIUS = 2
    15 LAMBDA = 10
    16 FILL = 'red'
    17 
    18 stop = 0                                # Set when main loop exits
    19 
    20 def particle(canvas):
    21     r = RADIUS
    22     x = random.gauss(WIDTH/2.0, SIGMA)
    23     y = random.gauss(HEIGHT/2.0, SIGMA)
    24     p = canvas.create_oval(x-r, y-r, x+r, y+r, fill=FILL)
    25     while not stop:
    26         dx = random.gauss(0, BUZZ)
    27         dy = random.gauss(0, BUZZ)
    28         dt = random.expovariate(LAMBDA)
    29         try:
    30             canvas.move(p, dx, dy)
    31         except TclError:
    32             break
    33         time.sleep(dt)
    34 
    35 def main():
    36     global stop
    37     root = Tk()
    38     canvas = Canvas(root, width=WIDTH, height=HEIGHT)
    39     canvas.pack(fill='both', expand=1)
    40     #粒子数目
    41     np = 30
    42     if sys.argv[1:]:
    43         np = int(sys.argv[1])
    44     for i in range(np):
    45         t = threading.Thread(target=particle, args=(canvas,))
    46         t.start()
    47     try:
    48         root.mainloop()
    49     finally:
    50         stop = 1
    51 
    52 main()

    更多资料:http://www.oschina.net/code/explore/Python-3.1.3/Demo/tkinter/guido/brownian.py

    ========================================================

    More reading,and english is important.

    I'm Hongten

     

    大哥哥大姐姐,觉得有用打赏点哦!多多少少没关系,一分也是对我的支持和鼓励。谢谢。
    Hongten博客排名在100名以内。粉丝过千。
    Hongten出品,必是精品。

    E | hongtenzone@foxmail.com  B | http://www.cnblogs.com/hongten

    ========================================================

  • 相关阅读:
    mkimage command not found
    Linux添加快捷启动方式 (Ubuntu Debian CentOS)
    CentOS下通过locale来设置字符集
    CentOS 安装中文输入法
    Centos 安装KScope1.6.2
    centos 配置NFS服务器
    Linux shell判断文件和文件夹是否存在
    数据库中Schema和Database有什么区别
    配置Tomcat使用https协议
    HTML font: 12px/1.5 Arial; 是什么意思
  • 原文地址:https://www.cnblogs.com/hongten/p/hongten_python_thread_tkinter_brownian.html
Copyright © 2011-2022 走看看