I want to create a BoxShape in jBullet. The constructor asks for a Vector3f object as parameter which asks for three float parameters.
BoxShape(Vector3f boxHalfExtends) //The constructor for the "BoxShape" class.
I have looked at the jBullet page and couldn't find what boxHalfExtends is.
What am I supposed to enter to the constructor parameter for the BoxShape?
Source: http://www.panda3d.org/manual/index.php/Bullet_Collision_Shapes
What that means is, you need to pass in half of the width and height for the box on the x,y,z axises.
The dx,dy,dz values aren't about where on the world the box is placed but how big it is.