mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
684 B
Java
22 lines
684 B
Java
package com.airbnb.lottie.animation.content;
|
|
|
|
import android.graphics.Path;
|
|
import com.airbnb.lottie.utils.Utils;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class CompoundTrimPathContent {
|
|
private final List<TrimPathContent> contents = new ArrayList();
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public void addTrimPath(TrimPathContent trimPathContent) {
|
|
this.contents.add(trimPathContent);
|
|
}
|
|
|
|
public void apply(Path path) {
|
|
for (int size = this.contents.size() - 1; size >= 0; size--) {
|
|
Utils.applyTrimPathIfNeeded(path, this.contents.get(size));
|
|
}
|
|
}
|
|
}
|