Author: ArcRiley Date: 2007-06-05 12:56:21 -0400 (Tue, 05 Jun 2007) New Revision: 136
Added: trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pxd trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pyx Removed: trunk/pysoy/src/bodies._bodies/soy.bodies.pxd trunk/pysoy/src/bodies._bodies/soy.bodies.pyx Modified: trunk/pysoy/src/bodies._bodies/ Log: And some more moving.. Property changes on: trunk/pysoy/src/bodies._bodies ___________________________________________________________________ Name: svn:ignore - soy.bodies.c + soy.bodies._bodies.c Copied: trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pxd (from rev 135, trunk/pysoy/src/bodies._bodies/soy.bodies.pxd) =================================================================== --- trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pxd (rev 0) +++ trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pxd 2007-06-05 16:56:21 UTC (rev 136) @@ -0,0 +1,42 @@ +# PySoy Bodies Declarations +# +# Copyright (C) 2006,2007 Team PySoy +# +# 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 +# (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. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see http://www.gnu.org/licenses +# or write to the Free Software Foundation,Inc., 51 Franklin Street, +# Fifth Floor, Boston, MA 02110-1301 USA +# +# $Id$ + +cimport gl +cimport ode +cimport soy._core +cimport soy._imports + +cdef class Body : + cdef object __dict__ + cdef ode.dBodyID _bodyID + cdef soy._core.Scene _scene + cdef void _render(self) + +cdef class Camera (Body) : + cdef float _fovy + cdef void _project(self) + +#cdef class Mesh (Body) : +# cdef void _verticies + + +cdef extern from "stdio.h" : + int printf (char *format, ...) Copied: trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pyx (from rev 135, trunk/pysoy/src/bodies._bodies/soy.bodies.pyx) =================================================================== --- trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pyx (rev 0) +++ trunk/pysoy/src/bodies._bodies/soy.bodies._bodies.pyx 2007-06-05 16:56:21 UTC (rev 136) @@ -0,0 +1,32 @@ +'''Body Classes + +This is a collection of classes that exist in 3d space. + +''' +__credits__ = '''Copyright (C) 2006,2007 PySoy Developers + + 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 + (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. + + You should have received a copy of the GNU General Public License + along with this program; if not, see http://www.gnu.org/licenses + or write to the Free Software Foundation,Inc., 51 Franklin Street, + Fifth Floor, Boston, MA 02110-1301 USA +''' +__author__ = '''Maintained by ArcRiley''' +__date__ = 'Last change on '+ \ + '$Date$'[7:-20]+ \ + 'by '+'$Author$'[9:-2] +__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' + +include "Body.pxi" +include "Camera.pxi" +include "Light.pxi" +include "Mesh.pxi" Deleted: trunk/pysoy/src/bodies._bodies/soy.bodies.pxd =================================================================== --- trunk/pysoy/src/bodies._bodies/soy.bodies.pxd 2007-06-05 16:54:55 UTC (rev 135) +++ trunk/pysoy/src/bodies._bodies/soy.bodies.pxd 2007-06-05 16:56:21 UTC (rev 136) @@ -1,42 +0,0 @@ -# PySoy Bodies Declarations -# -# Copyright (C) 2006,2007 Team PySoy -# -# 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 -# (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. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, see http://www.gnu.org/licenses -# or write to the Free Software Foundation,Inc., 51 Franklin Street, -# Fifth Floor, Boston, MA 02110-1301 USA -# -# $Id$ - -cimport gl -cimport ode -cimport soy._core -cimport soy._imports - -cdef class Body : - cdef object __dict__ - cdef ode.dBodyID _bodyID - cdef soy._core.Scene _scene - cdef void _render(self) - -cdef class Camera (Body) : - cdef float _fovy - cdef void _project(self) - -#cdef class Mesh (Body) : -# cdef void _verticies - - -cdef extern from "stdio.h" : - int printf (char *format, ...) Deleted: trunk/pysoy/src/bodies._bodies/soy.bodies.pyx =================================================================== --- trunk/pysoy/src/bodies._bodies/soy.bodies.pyx 2007-06-05 16:54:55 UTC (rev 135) +++ trunk/pysoy/src/bodies._bodies/soy.bodies.pyx 2007-06-05 16:56:21 UTC (rev 136) @@ -1,32 +0,0 @@ -'''Body Classes - -This is a collection of classes that exist in 3d space. - -''' -__credits__ = '''Copyright (C) 2006,2007 PySoy Developers - - 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 - (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. - - You should have received a copy of the GNU General Public License - along with this program; if not, see http://www.gnu.org/licenses - or write to the Free Software Foundation,Inc., 51 Franklin Street, - Fifth Floor, Boston, MA 02110-1301 USA -''' -__author__ = '''Maintained by ArcRiley''' -__date__ = 'Last change on '+ \ - '$Date$'[7:-20]+ \ - 'by '+'$Author$'[9:-2] -__version__ = 'Trunk (r'+'$Rev$'[6:-2]+')' - -include "Body.pxi" -include "Camera.pxi" -include "Light.pxi" -include "Mesh.pxi" _______________________________________________ PySoy-SVN mailing list PySoy-SVN@pysoy.org http://www.pysoy.org/mailman/listinfo/pysoy-svn