computeSignedArea method

double computeSignedArea(
  1. List<Point<double>> path
)

Returns the signed area of path (positive = counter-clockwise).

Implementation

double computeSignedArea(List<Point<double>> path) =>
    SphericalUtils.computeSignedArea(path);