boxRgba method

int boxRgba(
  1. Rectangle<double> rect,
  2. int r,
  3. int g,
  4. int b,
  5. int a,
)

Implementation

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