1.0.0 • Published 7 years ago

node-linear-motion v1.0.0

Weekly downloads
3
License
ISC
Repository
github
Last release
7 years ago

Node Linea Motion

Calculates velocity, distance and time. Review module

Instalation

npm install --save node-linear-motion

Usage

const LinearMotion = require('node-linear-motion');

let time = calculateTime(19, 10);
let velocity = calculateVelocity(5, 19);
let distance = calculateDistance(100, 2);

It's assumed the values are expressed in meters and seconds.