UNPKG

@wise-community/drawing-tool

Version:
9 lines (8 loc) 172 B
/* global module */ module.exports = { dist: function dist(dx, dy){ var dx2 = Math.pow(dx, 2); var dy2 = Math.pow(dy, 2); return Math.sqrt(dx2 + dy2); } };