UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

11 lines (9 loc) 372 B
define(["require", "exports"], function (require, exports) { "use strict"; function getDistanceBetweenPoints(point1, point2) { var distance = Math.sqrt(Math.pow(point1.x - point2.x, 2) + Math.pow(point1.y - point2.y, 2)); return distance; } exports.getDistanceBetweenPoints = getDistanceBetweenPoints; }); //# sourceMappingURL=math.js.map