17 lines
528 B
Java
17 lines
528 B
Java
package com.google.android.gms.maps.model;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class Dash extends PatternItem {
|
|
public final float length;
|
|
|
|
public Dash(float f) {
|
|
super(0, Float.valueOf(Math.max(f, 0.0f)));
|
|
this.length = Math.max(f, 0.0f);
|
|
}
|
|
|
|
@Override // com.google.android.gms.maps.model.PatternItem
|
|
public String toString() {
|
|
return "[Dash: length=" + this.length + "]";
|
|
}
|
|
} |