fillBottomUpGradient method
Fill a rectangle (x
,y
, width
x height
) with a bottom up linear gradient.
See fillTopDownGradient.
Implementation
void fillBottomUpGradient(num x, num y, num width, num height,
PColor colorFrom, PColor colorTo) =>
fillTopDownGradient(x, y, width, height, colorTo, colorFrom);