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