Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 423 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 423 Bytes

Travis

Calculate distance between two points

Installation

npm install @danmmx/distance-between-points

Usage


import calcDistance from '@danmmx/distance-between-points'

const pointA = { x: 1, y: 1 }
const pointB = { x: 2, y: 2 }
const distance = calcDistance(pointA, pointB)