isCCWArea static method

bool isCCWArea(
  1. List<Coordinate> ring
)

Implementation

static bool isCCWArea(List<Coordinate> ring) {
  return Area.ofRingSigned(ring) < 0;
}