From: Timothy S. <pe...@us...> - 2004-11-16 06:20:00
|
Update of /cvsroot/pyode/pyode/examples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4597/examples Modified Files: transforms.py vehicle.py Log Message: - Renamed Manifest.in to MANIFEST.in. (Distutils expects this on Unix.) - Added license terms to the xode files. - Changed my e-mail address in AUTHORS to my current one. - Added my e-mail address to setup.py. Index: vehicle.py =================================================================== RCS file: /cvsroot/pyode/pyode/examples/vehicle.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** vehicle.py 23 Oct 2004 12:47:51 -0000 1.1 --- vehicle.py 16 Nov 2004 06:19:49 -0000 1.2 *************** *** 1,2 **** --- 1,23 ---- + ###################################################################### + # Python Open Dynamics Engine Wrapper + # Copyright (C) 2004 PyODE developers (see file AUTHORS) + # All rights reserved. + # + # This library is free software; you can redistribute it and/or + # modify it under the terms of EITHER: + # (1) The GNU Lesser General Public License as published by the Free + # Software Foundation; either version 2.1 of the License, or (at + # your option) any later version. The text of the GNU Lesser + # General Public License is included with this library in the + # file LICENSE. + # (2) The BSD-style license that is included with this library in + # the file LICENSE-BSD. + # + # This library is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY; without even the implied warranty of + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files + # LICENSE and LICENSE-BSD for more details. + ###################################################################### + # PyODE Example: VehicleDemo Index: transforms.py =================================================================== RCS file: /cvsroot/pyode/pyode/examples/transforms.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** transforms.py 16 Jul 2004 11:45:17 -0000 1.1 --- transforms.py 16 Nov 2004 06:19:49 -0000 1.2 *************** *** 1,2 **** --- 1,23 ---- + ###################################################################### + # Python Open Dynamics Engine Wrapper + # Copyright (C) 2004 PyODE developers (see file AUTHORS) + # All rights reserved. + # + # This library is free software; you can redistribute it and/or + # modify it under the terms of EITHER: + # (1) The GNU Lesser General Public License as published by the Free + # Software Foundation; either version 2.1 of the License, or (at + # your option) any later version. The text of the GNU Lesser + # General Public License is included with this library in the + # file LICENSE. + # (2) The BSD-style license that is included with this library in + # the file LICENSE-BSD. + # + # This library is distributed in the hope that it will be useful, + # but WITHOUT ANY WARRANTY; without even the implied warranty of + # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files + # LICENSE and LICENSE-BSD for more details. + ###################################################################### + # PyODE Example: Transforms # This example demonstrates the way object transforms are calculated relative |