fillPath method
Fill a path
of points.
Implementation
@override
void fillPath(List path, PStyle style, {bool closePath = false}) {
if (path.isEmpty) return;
_setFillStyle(style);
_drawPath(path, closePath);
_ctx.fill();
}
Fill a path
of points.
@override
void fillPath(List path, PStyle style, {bool closePath = false}) {
if (path.isEmpty) return;
_setFillStyle(style);
_drawPath(path, closePath);
_ctx.fill();
}