mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
37 lines
2.5 KiB
Java
37 lines
2.5 KiB
Java
package androidx.compose.material3;
|
|
|
|
import androidx.compose.animation.core.AnimationState;
|
|
import androidx.compose.animation.core.AnimationVector;
|
|
import androidx.exifinterface.media.ExifInterface;
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: SnapFlingBehavior.kt */
|
|
@Metadata(d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\t\b\u0002\u0018\u0000*\u0004\b\u0000\u0010\u0001*\b\b\u0001\u0010\u0002*\u00020\u00032\u00020\u0004B!\u0012\u0006\u0010\u0005\u001a\u00028\u0000\u0012\u0012\u0010\u0006\u001a\u000e\u0012\u0004\u0012\u00028\u0000\u0012\u0004\u0012\u00028\u00010\u0007¢\u0006\u0002\u0010\bJ\u000e\u0010\u000e\u001a\u00028\u0000H\u0086\u0002¢\u0006\u0002\u0010\fJ\u0015\u0010\u000f\u001a\u000e\u0012\u0004\u0012\u00028\u0000\u0012\u0004\u0012\u00028\u00010\u0007H\u0086\u0002R\u001d\u0010\u0006\u001a\u000e\u0012\u0004\u0012\u00028\u0000\u0012\u0004\u0012\u00028\u00010\u0007¢\u0006\b\n\u0000\u001a\u0004\b\t\u0010\nR\u0013\u0010\u0005\u001a\u00028\u0000¢\u0006\n\n\u0002\u0010\r\u001a\u0004\b\u000b\u0010\f¨\u0006\u0010"}, d2 = {"Landroidx/compose/material3/AnimationResult;", ExifInterface.GPS_DIRECTION_TRUE, ExifInterface.GPS_MEASUREMENT_INTERRUPTED, "Landroidx/compose/animation/core/AnimationVector;", "", "remainingOffset", "currentAnimationState", "Landroidx/compose/animation/core/AnimationState;", "(Ljava/lang/Object;Landroidx/compose/animation/core/AnimationState;)V", "getCurrentAnimationState", "()Landroidx/compose/animation/core/AnimationState;", "getRemainingOffset", "()Ljava/lang/Object;", "Ljava/lang/Object;", "component1", "component2", "material3_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
|
/* loaded from: classes.dex */
|
|
final class AnimationResult<T, V extends AnimationVector> {
|
|
private final AnimationState<T, V> currentAnimationState;
|
|
private final T remainingOffset;
|
|
|
|
public final T component1() {
|
|
return this.remainingOffset;
|
|
}
|
|
|
|
public final AnimationState<T, V> component2() {
|
|
return this.currentAnimationState;
|
|
}
|
|
|
|
public final AnimationState<T, V> getCurrentAnimationState() {
|
|
return this.currentAnimationState;
|
|
}
|
|
|
|
public final T getRemainingOffset() {
|
|
return this.remainingOffset;
|
|
}
|
|
|
|
public AnimationResult(T t, AnimationState<T, V> currentAnimationState) {
|
|
Intrinsics.checkNotNullParameter(currentAnimationState, "currentAnimationState");
|
|
this.remainingOffset = t;
|
|
this.currentAnimationState = currentAnimationState;
|
|
}
|
|
}
|