mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
19 lines
588 B
Java
19 lines
588 B
Java
package com.airbnb.lottie.parser;
|
|
|
|
import android.graphics.PointF;
|
|
import com.airbnb.lottie.parser.moshi.JsonReader;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class PathParser implements ValueParser<PointF> {
|
|
public static final PathParser INSTANCE = new PathParser();
|
|
|
|
private PathParser() {
|
|
}
|
|
|
|
/* JADX WARN: Can't rename method to resolve collision */
|
|
@Override // com.airbnb.lottie.parser.ValueParser
|
|
public PointF parse(JsonReader jsonReader, float f) throws IOException {
|
|
return JsonUtils.jsonToPoint(jsonReader, f);
|
|
}
|
|
}
|