Finding if three points are collinear - JavaScript



Collinear Points

Three or more points that lie on the same straight line are called collinear points.

And three points lie on the same if the slope of all three pairs of lines formed by them is equal.

Consider, for example, three arbitrary points A, B and C on a 2-D plane, they will be collinear if βˆ’

slope of AB = slope of BC = slope of accepts

Slope of a line βˆ’

The slope of a line is generally given by the tangent of the angle it makes with the positive direction of x-axis.

Alternatively, if we have two points that lie on the line, say A(x1, y1) and B(x2, y2), then the slope of line can be calculated by βˆ’

Slope of AB = (y2-y1) / (x2-x1)

Let’s write the code for this function βˆ’

Example

Following is the code βˆ’

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));

Output

Following is the output in the console βˆ’

true
Updated on: 2020-09-14T14:01:39+05:30

625 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements