From: Andy T. <an...@us...> - 2005-12-13 11:14:11
|
Update of /cvsroot/pythoncard/PythonCard/samples/flock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19204/flock Modified Files: flock.py readme.txt Log Message: Removed all of the plain except: clauses I could Index: flock.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/flock/flock.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** flock.py 11 Oct 2004 02:09:12 -0000 1.2 --- flock.py 13 Dec 2005 11:13:23 -0000 1.3 *************** *** 2,8 **** """ __version__ = "$Revision$" __date__ = "$Date$" - """ # KEA 2004-09-25 --- 2,11 ---- """ + Builds on the "gravity" sample to show a simple animation of "boids"; shows simple emergent behaviour for a 2-D flock of "boids". + + This sampe uses two images to animate the movement of bird-like objects. + """ __version__ = "$Revision$" __date__ = "$Date$" # KEA 2004-09-25 *************** *** 18,22 **** import psyco psyco.full() ! except: pass --- 21,25 ---- import psyco psyco.full() ! except ImportError: pass Index: readme.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/flock/readme.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** readme.txt 1 Aug 2005 18:09:30 -0000 1.2 --- readme.txt 13 Dec 2005 11:13:23 -0000 1.3 *************** *** 2,5 **** This sampe uses two images to animate the movement of bird-like objects. - - --- 2,3 ---- |