55 lines
1.5 KiB
Java
55 lines
1.5 KiB
Java
|
package o;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public class IS implements Parcelable {
|
||
|
public static final Parcelable.Creator<IS> CREATOR = new Parcelable.Creator<IS>() { // from class: o.IS.1
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* synthetic */ IS createFromParcel(Parcel parcel) {
|
||
|
return new IS(parcel);
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable.Creator
|
||
|
public final /* bridge */ /* synthetic */ IS[] newArray(int i) {
|
||
|
return new IS[i];
|
||
|
}
|
||
|
};
|
||
|
public double a;
|
||
|
public double b;
|
||
|
public double c;
|
||
|
public double d;
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public int describeContents() {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public IS(double d, double d2, double d3, double d4) {
|
||
|
this.a = d;
|
||
|
this.b = d2;
|
||
|
this.c = d3;
|
||
|
this.d = d4;
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public void writeToParcel(Parcel parcel, int i) {
|
||
|
parcel.writeDouble(this.a);
|
||
|
parcel.writeDouble(this.b);
|
||
|
parcel.writeDouble(this.c);
|
||
|
parcel.writeDouble(this.d);
|
||
|
}
|
||
|
|
||
|
protected IS(Parcel parcel) {
|
||
|
this.a = parcel.readDouble();
|
||
|
this.b = parcel.readDouble();
|
||
|
this.c = parcel.readDouble();
|
||
|
this.d = parcel.readDouble();
|
||
|
}
|
||
|
|
||
|
public IS(C0607Km c0607Km) {
|
||
|
this(c0607Km.d.doubleValue(), c0607Km.b.doubleValue(), c0607Km.a.doubleValue(), c0607Km.c.doubleValue());
|
||
|
}
|
||
|
}
|