chromium/ui/android/java/src/org/chromium/ui/interpolators/AndroidxInterpolators.java

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.ui.interpolators;

import androidx.core.animation.Interpolator;
import androidx.core.animation.PathInterpolator;

/** Reference to one of each standard interpolator to avoid allocations. */
public class AndroidxInterpolators {
    public static final Interpolator STANDARD_INTERPOLATOR = new PathInterpolator(0.2f, 0f, 0f, 1f);
}