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