39 lines
960 B
Java
39 lines
960 B
Java
package com.google.android.material.shadow;
|
|
|
|
import android.graphics.Rect;
|
|
import androidx.appcompat.graphics.drawable.DrawableWrapper;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ShadowDrawableWrapper extends DrawableWrapper {
|
|
static final double b = Math.cos(Math.toRadians(45.0d));
|
|
|
|
public static float a(float f, float f2, boolean z) {
|
|
return z ? (float) (f + ((1.0d - b) * f2)) : f;
|
|
}
|
|
|
|
public static float b(float f, float f2, boolean z) {
|
|
return z ? (float) ((f * 1.5f) + ((1.0d - b) * f2)) : f * 1.5f;
|
|
}
|
|
|
|
public final void a(float f) {
|
|
throw null;
|
|
}
|
|
|
|
public void a(float f, float f2) {
|
|
throw null;
|
|
}
|
|
|
|
public float b() {
|
|
throw null;
|
|
}
|
|
|
|
public void b(float f) {
|
|
throw null;
|
|
}
|
|
|
|
@Override // androidx.appcompat.graphics.drawable.DrawableWrapper, android.graphics.drawable.Drawable
|
|
public boolean getPadding(Rect rect) {
|
|
throw null;
|
|
}
|
|
}
|