MapVector2

data class MapVector2(val x: Double, val y: Double) : Parcelable

Represents a vector in the map coordinate system

Constructors

Link copied to clipboard
constructor(x: Double, y: Double)

Types

Link copied to clipboard

Properties

Link copied to clipboard
Link copied to clipboard
val x: Double
Link copied to clipboard
val y: Double

Functions

Link copied to clipboard
open override fun describeContents(): Int
Link copied to clipboard
operator fun div(divisor: Double): MapVector2
Link copied to clipboard
fun dot(other: MapVector2): Double
Link copied to clipboard
operator fun plus(other: MapPoint): MapPoint
operator fun plus(other: MapVector2): MapVector2
Link copied to clipboard
operator fun times(scale: Double): MapVector2
Link copied to clipboard
open override fun writeToParcel(parcel: Parcel, flags: Int)