CircuitOptions
data class CircuitOptions(val interval: PercentageInterval? = null, val blockFromPercent: Double? = null)
This class contains the necessary options for a circuit navigation.
Parameters
interval
define the portion of the circuit to do in case the user wants to do only some parts. If null, will do circuit from 0 to 100%.
blockFromPercent
Defines roads of a section of the circuit to block. This section is defined by blockFromPercent, interval.start. Therefore, if blockFromPercent >= interval.start, it will have no effect. Default value is null (disabled).