kMaterialFrictionFactor function

double kMaterialFrictionFactor(
  1. double overscrollFraction
)

Friction factor used by material.

Implementation

double kMaterialFrictionFactor(double overscrollFraction) =>
    0.875 * math.pow(1 - overscrollFraction, 2);