SpringPhysics
class SpringPhysics(val stiffness: Int = 1, val damping: Int = 10, val mass: Double = 1.0, val velocity: Double? = null, val restSpeed: Double = 0.1, val restDelta: Double = 0.01, val delay: Duration = Duration.ZERO, val repeat: Int = 0, val repeatType: RepeatType? = null, val repeatDelay: Duration? = null) : MotionAnimation(source)
Spring animation based on physics.
Parameters
stiffness
Stiffness of the spring. Higher values will create more sudden movement. (default is 1)
damping
Strength of opposing force. If set to 0, spring will oscillate indefinitely. (default is 10)
mass
Mass of the object. Higher values will result in more lethargic movement. (default is 1)
velocity
Initial velocity of the object
restSpeed
End animation if absolute speed drops below this value and delta is smaller than restDelta. (default is 0.1)
restDelta
End animation if distance is below this value and speed is below restSpeed (default is 0.01)
delay
Delay before the animation starts
repeat
Number of times the animation should repeat
repeatType
Type of the repeat
repeatDelay
Delay between repeats