>> 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))
Thanks for the fix. I should have figured that out!
Alan
|