mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
517 B
Java
22 lines
517 B
Java
package com.google.zxing.common;
|
|
|
|
import com.google.zxing.ResultPoint;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class DetectorResult {
|
|
private final BitMatrix bits;
|
|
private final ResultPoint[] points;
|
|
|
|
public final BitMatrix getBits() {
|
|
return this.bits;
|
|
}
|
|
|
|
public final ResultPoint[] getPoints() {
|
|
return this.points;
|
|
}
|
|
|
|
public DetectorResult(BitMatrix bitMatrix, ResultPoint[] resultPointArr) {
|
|
this.bits = bitMatrix;
|
|
this.points = resultPointArr;
|
|
}
|
|
}
|