From: Simon W. <sim...@gm...> - 2006-01-07 15:02:16
|
I'm attempting to use PyODE for a 2D platform game. The below code is not doing what I expect. self.space =3D space =3D ode.Space() self.back =3D ode.GeomPlane(space, (0,0,1), 1) self.front =3D ode.GeomPlane(space, (0,0,-1),-1) What I want to do is sandwich my world between two vertical infinite planes. Am I going about this the right way? -Sw. |