UNPKG
@wise-community/drawing-tool
Version:
latest (2.3.3)
2.3.3
2.3.2
2.3.0-pre.1
HTML5 Drawing Tool
github.com/WISE-Community/drawing-tool
WISE-Community/drawing-tool
@wise-community/drawing-tool
/
app
/
scripts
/
util.js
9 lines
(8 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
/* 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); } };