Author: ArcRiley
Date: 2008-04-01 23:56:29 -0400 (Tue, 01 Apr 2008)
New Revision: 1219

Modified:
   trunk/pysoy/src/masses/Box.pxi
   trunk/pysoy/src/masses/Capsule.pxi
   trunk/pysoy/src/masses/Cylinder.pxi
   trunk/pysoy/src/masses/Mass.pxi
   trunk/pysoy/src/masses/Sphere.pxi
Log:
No Ticket :
  fixed up soy.masses license stubs and set svn:keywords to Id


Modified: trunk/pysoy/src/masses/Box.pxi
===================================================================
--- trunk/pysoy/src/masses/Box.pxi      2008-04-02 03:47:18 UTC (rev 1218)
+++ trunk/pysoy/src/masses/Box.pxi      2008-04-02 03:56:29 UTC (rev 1219)
@@ -1,19 +1,21 @@
-# PySoy's soy.shapes.Sphere class
+# PySoy's masses.Box
 #
 # Copyright (C) 2006,2007,2008 PySoy Group
 #
 #  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 3 of the License, or
+#  it under the terms of the GNU Affero General Public License as published
+#  by the Free Software Foundation, either version 3 of the License, or
 #  (at your option) any later version.
 #
 #  This program 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
-#  GNU General Public License for more details.
+#  GNU Affero General Public License for more details.
 #
-#  You should have received a copy of the GNU General Public License
+#  You should have received a copy of the GNU Affero General Public License
 #  along with this program; if not, see http://www.gnu.org/licenses
+#
+# $Id$
 
 cdef class Box (Mass) :
   '''PySoy Sphere
@@ -24,5 +26,4 @@
   def Create(self,float density = 1, float lx=1 , float ly=1 , float lz=1  ) :
     ode.dMassSetBox(&self._mass,density,lx,ly,lz);
     ode.dBodySetMass(self._bodyID,&self._mass)
-    
 


Property changes on: trunk/pysoy/src/masses/Box.pxi
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/pysoy/src/masses/Capsule.pxi
===================================================================
--- trunk/pysoy/src/masses/Capsule.pxi  2008-04-02 03:47:18 UTC (rev 1218)
+++ trunk/pysoy/src/masses/Capsule.pxi  2008-04-02 03:56:29 UTC (rev 1219)
@@ -1,19 +1,21 @@
-# PySoy's soy.shapes.Sphere class
+# PySoy's masses.Capsule
 #
 # Copyright (C) 2006,2007,2008 PySoy Group
 #
 #  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 3 of the License, or
+#  it under the terms of the GNU Affero General Public License as published
+#  by the Free Software Foundation, either version 3 of the License, or
 #  (at your option) any later version.
 #
 #  This program 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
-#  GNU General Public License for more details.
+#  GNU Affero General Public License for more details.
 #
-#  You should have received a copy of the GNU General Public License
+#  You should have received a copy of the GNU Affero General Public License
 #  along with this program; if not, see http://www.gnu.org/licenses
+#
+# $Id$
 
 cdef class Capsule (Mass) :
   '''PySoy Sphere
@@ -24,5 +26,4 @@
   def Create(self,float density = 1, int direction=1, float radius=1,float 
length=1 ) :
     ode.dMassSetCapsule(&self._mass,density,direction,radius,length);
     ode.dBodySetMass(self._bodyID,&self._mass)
-    
 


Property changes on: trunk/pysoy/src/masses/Capsule.pxi
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/pysoy/src/masses/Cylinder.pxi
===================================================================
--- trunk/pysoy/src/masses/Cylinder.pxi 2008-04-02 03:47:18 UTC (rev 1218)
+++ trunk/pysoy/src/masses/Cylinder.pxi 2008-04-02 03:56:29 UTC (rev 1219)
@@ -1,19 +1,21 @@
-# PySoy's soy.shapes.Sphere class
+# PySoy's masses.Cylinder
 #
 # Copyright (C) 2006,2007,2008 PySoy Group
 #
 #  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 3 of the License, or
+#  it under the terms of the GNU Affero General Public License as published
+#  by the Free Software Foundation, either version 3 of the License, or
 #  (at your option) any later version.
 #
 #  This program 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
-#  GNU General Public License for more details.
+#  GNU Affero General Public License for more details.
 #
-#  You should have received a copy of the GNU General Public License
+#  You should have received a copy of the GNU Affero General Public License
 #  along with this program; if not, see http://www.gnu.org/licenses
+#
+# $Id$
 
 cdef class Cylinder (Mass) :
   '''PySoy Sphere


Property changes on: trunk/pysoy/src/masses/Cylinder.pxi
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: trunk/pysoy/src/masses/Mass.pxi
===================================================================
--- trunk/pysoy/src/masses/Mass.pxi     2008-04-02 03:47:18 UTC (rev 1218)
+++ trunk/pysoy/src/masses/Mass.pxi     2008-04-02 03:56:29 UTC (rev 1219)
@@ -1,4 +1,4 @@
-# PySoy's stubs.Stub
+# PySoy's masses.Mass
 #
 # Copyright (C) 2006,2007,2008 PySoy Group
 #
@@ -51,5 +51,4 @@
             ode.dBodySetGravityMode(self._bodyID, 0)
         else :
           self._mass.mass = value
-        
-     
\ No newline at end of file
+

Modified: trunk/pysoy/src/masses/Sphere.pxi
===================================================================
--- trunk/pysoy/src/masses/Sphere.pxi   2008-04-02 03:47:18 UTC (rev 1218)
+++ trunk/pysoy/src/masses/Sphere.pxi   2008-04-02 03:56:29 UTC (rev 1219)
@@ -1,24 +1,26 @@
-# PySoy's soy.shapes.Sphere class
+# PySoy's masses.Sphere
 #
 # Copyright (C) 2006,2007,2008 PySoy Group
 #
 #  This program is free software; you can redistribute it and/or modify
-#  it under the terms of the GNU General Public License as published by
-#  the Free Software Foundation; either version 3 of the License, or
+#  it under the terms of the GNU Affero General Public License as published
+#  by the Free Software Foundation, either version 3 of the License, or
 #  (at your option) any later version.
 #
 #  This program 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
-#  GNU General Public License for more details.
+#  GNU Affero General Public License for more details.
 #
-#  You should have received a copy of the GNU General Public License
+#  You should have received a copy of the GNU Affero General Public License
 #  along with this program; if not, see http://www.gnu.org/licenses
+#
+# $Id$
 
 cdef class Sphere (Mass) :
-  '''PySoy Sphere
+  '''soy.masses.Sphere
 
-     A spherical shape class.
+     A spherical mass class.
   '''
 
   def Create(self,float density = 1 , float radius=1 ) :


Property changes on: trunk/pysoy/src/masses/Sphere.pxi
___________________________________________________________________
Name: svn:keywords
   + Id

_______________________________________________
PySoy-SVN mailing list
PySoy-SVN@pysoy.org
http://www.pysoy.org/mailman/listinfo/pysoy-svn

Reply via email to