rectangleRgba method
Implementation
int rectangleRgba(math.Rectangle<double> rect, int r, int g, int b, int a) {
// 158
return gfx.rectangleRgba(this, rect.left.toInt(), rect.top.toInt(),
rect.right.toInt(), rect.bottom.toInt(), r, g, b, a);
}