class ProgressBar::Projectors::SmoothedAverage

def self.calculate(current_projection, new_value, rate)

def self.calculate(current_projection, new_value, rate)
  (new_value * (1.0 - rate)) + (current_projection * rate)
end