Skip to content

phparkle/kinetic-value

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

kinetic-value

Tiny and performant class for tracking the instantaneous velocity of a continuously changing value.

Install

npm install kinetic-value

Usage

import KineticValue from "kinetic-value";

// Create a kinetic value
const kv = new KineticValue(0);

setInterval(() => {
  // Increment by 10 every 20ms
  kv.set(kv.get() + 50);

  // Velocity will be about 500
  console.log(kv.velocity());
}, 20);

API Reference

new KineticValue(initialValue: number, timeout?: number, now?: number)

Creates a new kinetic value.

timeout is the number of milliseconds to wait until the value is considered stopped. Default 50.

get()

Returns the current tracked value.

set(value: number, now?: number)

Updates the tracked value.

velocity(now?: number)

Returns the instantaneous velocity of the tracked value in units / second.

stop()

Resets the velocity to 0.

Author

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published