13 lines
337 B
Java
13 lines
337 B
Java
|
package com.airbnb.lottie.animation.content;
|
||
|
|
||
|
import android.graphics.Canvas;
|
||
|
import android.graphics.Matrix;
|
||
|
import android.graphics.RectF;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public interface DrawingContent extends Content {
|
||
|
void draw(Canvas canvas, Matrix matrix, int i);
|
||
|
|
||
|
void getBounds(RectF rectF, Matrix matrix, boolean z);
|
||
|
}
|