private void UpdateVelocityY(short y) { CheckVelocity(); _velocity = new TwoAxis(_velocity.X, y); }
private void CheckVelocity() { if (_velocity == null) _velocity = new TwoAxis(); }
private void UpdateVelocityX(short x) { CheckVelocity(); _velocity = new TwoAxis(x, _velocity.Y); }
private void UpdateOdometerX(short x) { CheckOdometer(); _odometer = new TwoAxis(x, _odometer.Y); }
private void UpdateOdometerY(short y) { CheckOdometer(); _odometer = new TwoAxis(_odometer.X, y); }
private void CheckOdometer() { if (_odometer == null) _odometer = new TwoAxis(); }