使用javascript

时间:2018-06-27 05:56:51

标签: javascript math rectangles calculation

我需要一个使用javascript的公式帮助,以使用leftMost,rightMost,topMost,BottomMost点以及正方形的高度,宽度来找到正方形的中心点。

enter image description here

我尝试了下面的代码,但是我没有获得确切的中心点,有人可以指导我找到正确的公式吗?

预先感谢

let leftMost = 100;
let rightMost = 500;
let topMost = 200;
let bottomMost = 600;
let height = bottomMost - topMost;
let width = rightMost - leftMost;
let size = ((width/2) * Math.sqrt(2));
let xPlot = leftMost + (width / 2);
let yPlot = topMost + (height / 2);
console.log(xPlot);
console.log(yPlot);

0 个答案:

没有答案