outVel method

void outVel()

Implementation

void outVel() {
  if (yVel.abs() < 6.6) {
    yVel = 0;
  }
  if (xVel.abs() < 6.6) {
    xVel = 0;
  }
}