23 lines
683 B
Java
23 lines
683 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: classes.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));
|
||
|
}
|
||
|
}
|
||
|
}
|