Also, don't use Double unless it is necessary, instead use double. double is a primitive, and Double is a wrapper object for a double primitive.
And vlad321, it has everything to do with scope, he was trying to access the non-static x and y variables from a static context. Probably referring to the SpaceShip.x and SpaceShip.y. Unless he named the SpaceShip object variable SpaceShip, which is just bad form.
Scottie, it would be helpful if you would just post all of your code. And just for clarification, what does Body have that you are extending? Bounding box, helper methods, etc?
Also, is SpaceShip the name of the variable in that code? If so, you should use camel case.








