From: Chris B. <chr...@gm...> - 2005-03-03 09:45:11
|
> The following code reproduces: > > import ode > > space = ode.Space() > geom = ode.GeomSphere(space, radius=0.5) > geom.setCategoryBits(1) You're using the wrong type (it could be argued that pyode should transparently convert it...). Try geom.setCategoryBits(long(1)) |