mostLeftPoint property
Get the furthest left point of the polygon
Implementation
Point get mostLeftPoint =>
vertices.reduce((cur, next) => cur.x <= next.x ? cur : next);
Get the furthest left point of the polygon
Point get mostLeftPoint =>
vertices.reduce((cur, next) => cur.x <= next.x ? cur : next);