Rabbit-R1/switch port/java/sources/androidx/compose/ui/graphics/PathEffect.java
2024-05-21 17:08:36 -04:00

51 lines
3.7 KiB
Java

package androidx.compose.ui.graphics;
import kotlin.Metadata;
import kotlin.jvm.internal.Intrinsics;
/* compiled from: PathEffect.kt */
@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\bf\u0018\u0000 \u00022\u00020\u0001:\u0001\u0002ø\u0001\u0000\u0082\u0002\u0006\n\u0004\b!0\u0001¨\u0006\u0003À\u0006\u0001"}, d2 = {"Landroidx/compose/ui/graphics/PathEffect;", "", "Companion", "ui-graphics_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes.dex */
public interface PathEffect {
/* renamed from: Companion, reason: from kotlin metadata */
public static final Companion INSTANCE = Companion.$$INSTANCE;
/* compiled from: PathEffect.kt */
@Metadata(d1 = {"\u00004\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0004\n\u0002\u0010\u0007\n\u0002\b\u0002\n\u0002\u0010\u0014\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u0016\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u00042\u0006\u0010\u0006\u001a\u00020\u0004J\u000e\u0010\u0007\u001a\u00020\u00042\u0006\u0010\b\u001a\u00020\tJ\u0018\u0010\n\u001a\u00020\u00042\u0006\u0010\u000b\u001a\u00020\f2\b\b\u0002\u0010\r\u001a\u00020\tJ3\u0010\u000e\u001a\u00020\u00042\u0006\u0010\u000f\u001a\u00020\u00102\u0006\u0010\u0011\u001a\u00020\t2\u0006\u0010\r\u001a\u00020\t2\u0006\u0010\u0012\u001a\u00020\u0013ø\u0001\u0000ø\u0001\u0001¢\u0006\u0004\b\u0014\u0010\u0015\u0082\u0002\u000b\n\u0005\\u001e0\u0001\n\u0002\b\u0019¨\u0006\u0016"}, d2 = {"Landroidx/compose/ui/graphics/PathEffect$Companion;", "", "()V", "chainPathEffect", "Landroidx/compose/ui/graphics/PathEffect;", "outer", "inner", "cornerPathEffect", "radius", "", "dashPathEffect", "intervals", "", "phase", "stampedPathEffect", "shape", "Landroidx/compose/ui/graphics/Path;", "advance", "style", "Landroidx/compose/ui/graphics/StampedPathEffectStyle;", "stampedPathEffect-7aD1DOk", "(Landroidx/compose/ui/graphics/Path;FFI)Landroidx/compose/ui/graphics/PathEffect;", "ui-graphics_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
/* loaded from: classes.dex */
public static final class Companion {
static final /* synthetic */ Companion $$INSTANCE = new Companion();
private Companion() {
}
public final PathEffect cornerPathEffect(float radius) {
return AndroidPathEffect_androidKt.actualCornerPathEffect(radius);
}
public static /* synthetic */ PathEffect dashPathEffect$default(Companion companion, float[] fArr, float f, int i, Object obj) {
if ((i & 2) != 0) {
f = 0.0f;
}
return companion.dashPathEffect(fArr, f);
}
public final PathEffect dashPathEffect(float[] intervals, float phase) {
Intrinsics.checkNotNullParameter(intervals, "intervals");
return AndroidPathEffect_androidKt.actualDashPathEffect(intervals, phase);
}
public final PathEffect chainPathEffect(PathEffect outer, PathEffect inner) {
Intrinsics.checkNotNullParameter(outer, "outer");
Intrinsics.checkNotNullParameter(inner, "inner");
return AndroidPathEffect_androidKt.actualChainPathEffect(outer, inner);
}
/* renamed from: stampedPathEffect-7aD1DOk, reason: not valid java name */
public final PathEffect m2907stampedPathEffect7aD1DOk(Path shape, float advance, float phase, int style) {
Intrinsics.checkNotNullParameter(shape, "shape");
return AndroidPathEffect_androidKt.m2537actualStampedPathEffect7aD1DOk(shape, advance, phase, style);
}
}
}