Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -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;
}
}

View File

@@ -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();
}