From: Alan B. <bl...@me...> - 2005-03-03 13:41:13
|
>> 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 |