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