位于同一条直线上的三个或更多个点称为共线点。
如果由它们形成的所有三对线的斜率相等,则三个点位于同一点上。
例如,考虑二维平面上的三个任意点A,B和C,如果-
slope of AB = slope of BC = slope of accepts
直线的斜率通常由其与x轴正方向所成角度的正切值给出。
或者,如果我们有两条线上的点,例如A(x1,y1)和B(x2,y2),则线的斜率可以通过-
Slope of AB = (y2-y1) / (x2-x1)
让我们为该函数编写代码-
以下是代码-
const a = {x: 2, y: 4}; const b = {x: 4, y: 6}; const c = {x: 6, y: 8}; const slope = (coor1, coor2) => (coor2.y - coor1.y) / (coor2.x - coor1.x); const areCollinear = (a, b, c) => { return slope(a, b) === slope(b, c) && slope(b, c) === slope(c, a); }; console.log(areCollinear(a, b, c));
输出结果
以下是控制台中的输出-
true