Package-level declarations
Types
Link copied to clipboard
open class CircularRangeSlider<T : Comparable<T>>(model: ConfinedRangeModel<T>, interpolator: Interpolator<T>, function: InvertibleFunction = LinearFunction) : RangeValueSlider<T>
Represents a range selection slider that is circular.
Link copied to clipboard
open class CircularSlider<T : Comparable<T>>(model: ConfinedValueModel<T>, interpolator: Interpolator<T>, function: InvertibleFunction = LinearFunction) : ValueSlider<T>
Represents a selection slider that is circular.
Link copied to clipboard
interface InvertibleFunction
A function f(x) that also has a valid f-1(x). The domain and range of this function must be 0-1.
Link copied to clipboard
InvertibleFunction f(x) = x
Link copied to clipboard
open class RangeSlider<T : Comparable<T>>(model: ConfinedRangeModel<T>, val orientation: Orientation = Horizontal, function: InvertibleFunction = LinearFunction, interpolator: Interpolator<T>) : RangeValueSlider<T>
Represents a range selection slider that can be Horizontal or Vertical.
Link copied to clipboard
Link copied to clipboard
open class Slider<T : Comparable<T>>(model: ConfinedValueModel<T>, val orientation: Orientation = Horizontal, function: InvertibleFunction = LinearFunction, interpolator: Interpolator<T>) : ValueSlider<T>
Represents a selection slider that can be Horizontal or Vertical.
Link copied to clipboard