public class

Schlick

extends Easing

 java.lang.Object

androidx.constraintlayout.core.motion.utils.Easing

↳androidx.constraintlayout.core.motion.utils.Schlick

Gradle dependencies

compile group: 'androidx.constraintlayout', name: 'constraintlayout-core', version: '1.1.0-alpha01'

  • groupId: androidx.constraintlayout
  • artifactId: constraintlayout-core
  • version: 1.1.0-alpha01

Artifact androidx.constraintlayout:constraintlayout-core:1.1.0-alpha01 it located at Google repository (https://maven.google.com/)

Overview

Schlick’s bias and gain functions curve for use in an easing function including quantize functions

Summary

Fields
from EasingNAMED_EASING[]
Methods
public doubleget(double x)

public doublegetDiff(double x)

from EasinggetInterpolator, toString
from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Methods

public double getDiff(double x)

public double get(double x)

Source

/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.constraintlayout.core.motion.utils;

/**
 * Schlick’s bias and gain functions
 * curve for use in an easing function including quantize functions
 */
public class Schlick extends Easing {
    private static final boolean DEBUG = false;
    double mS, mT;
    double mEps;

    Schlick(String configString) {
        // done this way for efficiency

        mStr = configString;
        int start = configString.indexOf('(');
        int off1 = configString.indexOf(',', start);
        mS = Double.parseDouble(configString.substring(start + 1, off1).trim());
        int off2 = configString.indexOf(',', off1 + 1);
        mT = Double.parseDouble(configString.substring(off1 + 1, off2).trim());
    }

    private double func(double x) {
        if (x < mT) {
            return mT * x / (x + mS * (mT - x));
        }
        return ((1 - mT) * (x - 1)) / (1 - x - mS * (mT - x));
    }

    private double dfunc(double x) {
        if (x < mT) {
            return (mS * mT * mT) / ((mS * (mT - x) + x) * (mS * (mT - x) + x));
        }
        return (mS * (mT - 1) * (mT - 1)) / ((-mS * (mT - x) - x + 1) * (-mS * (mT - x) - x + 1));
    }

    /**
     * @TODO: add description
     */
    public double getDiff(double x) {
        return dfunc(x);
    }

    /**
     * @TODO: add description
     */
    public double get(double x) {
        return func(x);
    }
}