24 lines
544 B
Java
24 lines
544 B
Java
|
package com.kofax.mobile.sdk.capture.model;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class PointDouble implements Serializable {
|
||
|
public final double x;
|
||
|
public final double y;
|
||
|
|
||
|
public PointDouble(double d, double d2) {
|
||
|
this.x = d;
|
||
|
this.y = d2;
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
StringBuilder sb = new StringBuilder("Point [x = ");
|
||
|
sb.append(this.x);
|
||
|
sb.append(", y = ");
|
||
|
sb.append(this.y);
|
||
|
sb.append("]");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
}
|