作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用公式来存档平行四边形的面积
向量乘积的数学公式:((x1 * y2 - y1 * x2) + (x2 * y3 - y2 * x3) + (x3 * y4 - y3 * x4) + (x4 * y1 - y4 * x1))/2
问题是:我是“手工”做的:
(points[0].x * points[1].y - points[0].y * points[1].x) +
(points[1].x * points[2].y - points[1].y * points[2].x) +
(points[2].x * points[3].y - points[2].y * points[3].x) +
(points[3].x * points[0].y - points[3].y * points[0].x)) / 2
有没有一种方法可以使用类似reduce
的方法来归档相同的结果,从而避免经典的for
循环?
最佳答案
您可以在reduce
ing 时使用模数来访问下一个(或环绕)点:
const vProd = points.reduce((sum, point, i, arr) => {
const { x, y } = arr[(i + 1) % arr.length];
return sum
+ point.x * y
- point.y * x
}, 0);
但不确定它是否更好;原来的4-liner的功能,虽然冗长,但很清楚
关于javascript - 获得多边形矢量积的函数式方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50500414/
我是一名优秀的程序员,十分优秀!