Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eased-oscillator

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eased-oscillator

Eased oscillator

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Build Status

Eased Oscillator

Produces a function that oscillates between two values with an easing function

Usage


var osciQuad = easedOsc({
    min: 10,
    max: 20,
    steps: 2,
    easing: 'linear'
});

console.log(osciQuad()); // 10
// each time the function is called, the step value oscillates between the min and max
console.log(osciQuad()); // 15
console.log(osciQuad()); // 20
console.log(osciQuad()); // 15
console.log(osciQuad()); // 10
console.log(osciQuad()); // 15
// etc..

Users can also specify a custom easing function if they wish:


var linearOsc = easedOsc({
    min: 0,
    max: 5,
    steps: 5,
    easing: function(t,b,c,d){
        return c * t / d + b;
    }
});

console.log(linearOsc()); // 0
console.log(linearOsc()); // 1
console.log(linearOsc()); // 2
// etc..


Keywords

FAQs

Package last updated on 18 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc