/** Convenience accessor */
 public void setOffset(ReadableVector2f location) {
   this.ox = location.getX();
   this.oy = location.getY();
 }
 public void setLocation(ReadableVector2f newLocation) {
   this.x = newLocation.getX();
   this.y = newLocation.getY();
 }