Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
package com.google.android.gms.maps.model;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import com.google.android.gms.common.internal.Objects;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||||
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class StreetViewPanoramaOrientation extends AbstractSafeParcelable {
|
||||
public static final Parcelable.Creator<StreetViewPanoramaOrientation> CREATOR = new zzaa();
|
||||
public final float bearing;
|
||||
public final float tilt;
|
||||
|
||||
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
||||
public static final class Builder {
|
||||
public float bearing;
|
||||
public float tilt;
|
||||
|
||||
public Builder() {
|
||||
}
|
||||
|
||||
public Builder(StreetViewPanoramaOrientation streetViewPanoramaOrientation) {
|
||||
Preconditions.checkNotNull(streetViewPanoramaOrientation, "StreetViewPanoramaOrientation must not be null.");
|
||||
this.bearing = streetViewPanoramaOrientation.bearing;
|
||||
this.tilt = streetViewPanoramaOrientation.tilt;
|
||||
}
|
||||
|
||||
public Builder bearing(float f) {
|
||||
this.bearing = f;
|
||||
return this;
|
||||
}
|
||||
|
||||
public StreetViewPanoramaOrientation build() {
|
||||
return new StreetViewPanoramaOrientation(this.tilt, this.bearing);
|
||||
}
|
||||
|
||||
public Builder tilt(float f) {
|
||||
this.tilt = f;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
|
||||
public StreetViewPanoramaOrientation(float f, float f2) {
|
||||
boolean z = false;
|
||||
if (f >= -90.0f && f <= 90.0f) {
|
||||
z = true;
|
||||
}
|
||||
Preconditions.checkArgument(z, "Tilt needs to be between -90 and 90 inclusive: " + f);
|
||||
this.tilt = f + 0.0f;
|
||||
this.bearing = (((double) f2) <= 0.0d ? (f2 % 360.0f) + 360.0f : f2) % 360.0f;
|
||||
}
|
||||
|
||||
public static Builder builder() {
|
||||
return new Builder();
|
||||
}
|
||||
|
||||
public static Builder builder(StreetViewPanoramaOrientation streetViewPanoramaOrientation) {
|
||||
return new Builder(streetViewPanoramaOrientation);
|
||||
}
|
||||
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (!(obj instanceof StreetViewPanoramaOrientation)) {
|
||||
return false;
|
||||
}
|
||||
StreetViewPanoramaOrientation streetViewPanoramaOrientation = (StreetViewPanoramaOrientation) obj;
|
||||
return Float.floatToIntBits(this.tilt) == Float.floatToIntBits(streetViewPanoramaOrientation.tilt) && Float.floatToIntBits(this.bearing) == Float.floatToIntBits(streetViewPanoramaOrientation.bearing);
|
||||
}
|
||||
|
||||
public int hashCode() {
|
||||
return Objects.hashCode(Float.valueOf(this.tilt), Float.valueOf(this.bearing));
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return Objects.toStringHelper(this).add("tilt", Float.valueOf(this.tilt)).add("bearing", Float.valueOf(this.bearing)).toString();
|
||||
}
|
||||
|
||||
@Override // android.os.Parcelable
|
||||
public void writeToParcel(Parcel parcel, int i) {
|
||||
float f = this.tilt;
|
||||
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||||
SafeParcelWriter.writeFloat(parcel, 2, f);
|
||||
SafeParcelWriter.writeFloat(parcel, 3, this.bearing);
|
||||
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user