Is there a difference between:

cube.moveForward(10);

and this:

cube.z += 10;

Do I get anything extra from using the moveForward method? I had a
peek at the code and it looks only like a more "expensive" way to do
this?

J

Reply via email to