Initial commit
This commit is contained in:
37
sources/com/google/zxing/oned/rss/FinderPattern.java
Normal file
37
sources/com/google/zxing/oned/rss/FinderPattern.java
Normal file
@@ -0,0 +1,37 @@
|
||||
package com.google.zxing.oned.rss;
|
||||
|
||||
import com.google.zxing.ResultPoint;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class FinderPattern {
|
||||
private final int a;
|
||||
private final int[] b;
|
||||
private final ResultPoint[] c;
|
||||
|
||||
public FinderPattern(int i, int[] iArr, int i2, int i3, int i4) {
|
||||
this.a = i;
|
||||
this.b = iArr;
|
||||
float f = i4;
|
||||
this.c = new ResultPoint[]{new ResultPoint(i2, f), new ResultPoint(i3, f)};
|
||||
}
|
||||
|
||||
public ResultPoint[] a() {
|
||||
return this.c;
|
||||
}
|
||||
|
||||
public int[] b() {
|
||||
return this.b;
|
||||
}
|
||||
|
||||
public int c() {
|
||||
return this.a;
|
||||
}
|
||||
|
||||
public boolean equals(Object obj) {
|
||||
return (obj instanceof FinderPattern) && this.a == ((FinderPattern) obj).a;
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return this.a;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user