Hi im new to Phys2D.
I created a Box like this:
private StaticBody box = new StaticBody( new Box(100.0f,5.0f) );
box.setPosition(10.0f, 10.0f);
w.add(box); //add box to the world
Does set position method sets the position of my box relative to its center or to the upper left corner?
I mean is the upper left corner of the box will be in 10,10 or the center is the one that will be in 10,10
Thank you.