fillPath method
Fill a path
of points.
Implementation
@override
void fillPath(List path, PStyle style, {bool closePath = false}) {
var points = _toPoints(path, closePath);
if (points.length < 2) return;
throw UnimplementedError();
}
Fill a path
of points.
@override
void fillPath(List path, PStyle style, {bool closePath = false}) {
var points = _toPoints(path, closePath);
if (points.length < 2) return;
throw UnimplementedError();
}