I want to know a piece of a code which can actually tell me if 3 points in a 2D space are on the same line or not. A pseudocode is also sufficient but Python is better. Thanks
|
|
You can check if the area of the ABC triangle is 0:
Of course, you don't actually need to divide by 2. |
|||||||||||||||||||
|
|
This is C++, but you can adapt it to python:
Basically, we are checking that the slopes between point 1 and point 2 and point 1 and point 3 match. Slope is change in y divided by change in x, so we have:
Cross multiplying gives Note, if you are using doubles, you can check against an epsilon:
|
|||||||||||||||||||||
|
|
Rule 1: In any linear 2d space, two points are always on the same line. Take 2 points and build an equation that represents a line through them. Then check if the third point is also on that line. Good luck. |
|||
|
|
|
Read this, and use it to find the equation of a line through the first two points. Follow the instructions to find |
||||
|
|
|
|
|||
|
|