jsketcher/web/app/math/math.js
2014-10-09 19:09:07 -07:00

7 lines
No EOL
145 B
JavaScript

TCAD.math = {};
TCAD.math.distance = function(x1, y1, x2, y2) {
var dx = x1 - x2;
var dy = y1 - y2;
return Math.sqrt(dx * dx + dy * dy);
}