reset method

void reset()

Resets the members of this class to their original value.

Implementation

void reset() {
  _filter.reset();
  _accuracy = 2.0;
  _calculatedPosition = Point.origin();
  _filteredPosition = Point.origin();
  _prevFinal = Point.origin();
  _finalPosition = Point.origin();
}