getFill method

Geometry getFill()

Implementation

Geometry getFill() {
  _isTight = true;
  if (_inputPolygons.isEmpty()) {
    return _createEmptyHull();
  }
  _buildHullTris();
  return _createHullGeometry(_hullTris, false);
}