From: Chris B. <chr...@gm...> - 2006-04-10 16:41:52
|
On 10/04/06, Hart's Antler <bha...@ya...> wrote: > python bails hard when i do j.setAxis( (0,0,1) ) with a SliderJoint? Usi= ng pyode 1.1 and > python2.4 on win32. can anyone confirm the code below crashes? > > from ode import * > w =3D World() > j =3D SliderJoint(w) > j.setAxis( (0,0,1) ) > # should crash now yup, crashes under Linux too. The following doesn't crash. from ode import * w =3D World() b0 =3D Body(w) b1 =3D Body(w) j =3D SliderJoint(w) j.attach(b0, b1) j.setAxis( (0,0,1) ) |