I have installed Python 2.6.6 and Box2D 2.0.2b1. And can't create box2d world - b2World().

Simple example:

import Box2D
Box2D.b2World()

No matter what I type into function b2World, I received this error:

Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    Box2D.b2World()
  File "C:\Python26\lib\site-packages\Box2D\Box2D.py", line 4350, in __init__
    _Box2D.b2World_swiginit(self,_Box2D.new_b2World(*args))
TypeError: new_b2World expected 3 arguments, got 0
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Try something like:

world = b2World(gravity=(0,-10), doSleep=True)

I had a look at the 2.0.2 version and it looks like you should pass your arguments like this:

worldAABB=box2d.b2AABB()
worldAABB.lowerBound = (-100.0, -100.0)
worldAABB.upperBound = ( 100.0, 100.0)
gravity = (0.0, -10.0)
world = box2d.b2World(worldAABB, gravity, True)
link|improve this answer
As I wrote above, no matter what code is written into function I got error message. In your case I got: Traceback (most recent call last): File "<pyshell#2>", line 1, in <module> world = Box2D.b2World(gravity=(0,-10), doSleep=True) TypeError: __init__() got an unexpected keyword argument 'doSleep' – Stanyko Oct 20 '11 at 7:04
Where did you get 2.0.2b1 from? I just find 2.0.1, 2.1.2, 2.1.3 and 2.2.X series. Did you try to upgrade? – Reto Aebersold Oct 20 '11 at 8:06
No I haven't updated it yet, but I suppose I should. 2.0.2b1 can be found here code.google.com/p/pybox2d/downloads/… – Stanyko Oct 20 '11 at 9:07
Ok, I updated my answer to show the correct arguments. – Reto Aebersold Oct 20 '11 at 9:35
It's working. Thanks a lot. But it seems a bit complicated than other versions. Isn't it a disadvantage? – Stanyko Oct 20 '11 at 10:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.