Colinear
Checks if a set of points are colinear. A set of points is said to be colinear or collinear if they belong to the same line.
Syntax
colinear?(Point, ..., Point)
colinear?(List)
Description
Given a set of points, returns true
if they are colinear, and false
otherwise.
Given a list of points, returns true
if they are colinear, and false
otherwise.