PathSearchDistance
public struct PathSearchDistance : Equatable
Horizon path search distance configuration.
The search distance defines the extent of the path in the horizon.
For more information on horizon paths see HorizonEngine
.
For more information on horizon options see HorizonOptions
.
-
Creates a distance with the maximum horizon length.
Throws
InitializationError
.invalidHorizonLength
ifmaxHorizonLength
is negative.Declaration
Swift
public init(maxHorizonLength: Measurement<UnitLength>) throws
Parameters
maxHorizonLength
The maximum length of the path in the horizon.
-
An error that occurs during the creation of the instance.
See moreDeclaration
Swift
public enum InitializationError : Error
-
The maximum length of the path in the horizon.
Declaration
Swift
public let maxHorizonLength: Measurement<UnitLength>