DrawRectangleGradientV method
void
DrawRectangleGradientV()
override
Implementation
@override
void DrawRectangleGradientV(
num posX,
num posY,
num width,
num height,
ColorD top,
ColorD bottom,
) => run(
() => RaylibDebugLabels.DrawRectangleGradientV(posX, posY, width, height, top, bottom),
() => rl.Core.DrawRectangleGradientV(
posX.toInt(),
posY.toInt(),
width.toInt(),
height.toInt(),
rl.Temp.Color$.Ref1(top).ref,
rl.Temp.Color$.Ref2(bottom).ref,
),
);