Initial commit
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
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;
|
||||
}
|
||||
}
|
@@ -0,0 +1,14 @@
|
||||
package com.google.android.material.shadow;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public interface ShadowViewDelegate {
|
||||
void a(int i, int i2, int i3, int i4);
|
||||
|
||||
void a(Drawable drawable);
|
||||
|
||||
boolean a();
|
||||
|
||||
float b();
|
||||
}
|
Reference in New Issue
Block a user