RouteLineDistancesIndex

data class RouteLineDistancesIndex(point: Point, distanceRemaining: Double)

Parameters

point

the upcoming, not yet visited point on the route

distanceRemaining

distance remaining from the upcoming point

Constructors

RouteLineDistancesIndex
Link copied to clipboard
fun RouteLineDistancesIndex(point: Point, distanceRemaining: Double)
the upcoming, not yet visited point on the route

Functions

component1
Link copied to clipboard
operator fun component1(): Point
component2
Link copied to clipboard
operator fun component2(): Double
copy
Link copied to clipboard
fun copy(point: Point, distanceRemaining: Double): RouteLineDistancesIndex
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

distanceRemaining
Link copied to clipboard
val distanceRemaining: Double
distance remaining from the upcoming point
point
Link copied to clipboard
val point: Point
the upcoming, not yet visited point on the route