SpringSpec

@Immutable
class SpringSpec<T>(val dampingRatio: Float = Spring.DampingRatioNoBouncy, val stiffness: Float = Spring.StiffnessMedium, val visibilityThreshold: T? = null) : FiniteAnimationSpec<T>

Creates a SpringSpec that uses the given spring constants (i.e. dampingRatio and stiffness. The optional visibilityThreshold defines when the animation should be considered to be visually close enough to round off to its target.

Parameters

dampingRatio

damping ratio of the spring. com.jakewharton.mosaic.animation.Spring.DampingRatioNoBouncy by default.

stiffness

stiffness of the spring. com.jakewharton.mosaic.animation.Spring.StiffnessMedium by default.

visibilityThreshold

specifies the visibility threshold

Constructors

Link copied to clipboard
constructor(dampingRatio: Float = Spring.DampingRatioNoBouncy, stiffness: Float = Spring.StiffnessMedium, visibilityThreshold: T? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val visibilityThreshold: T? = null

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun hashCode(): Int