DrawBoundingBox method

void DrawBoundingBox(
  1. BoundingBoxD box,
  2. ColorD color
)

Implementation

void DrawBoundingBox(
  BoundingBoxD box,
  ColorD color,
) => run(
  () => 'DrawBoundingBox($box, $color)',
  () => rl.Core.DrawBoundingBox(
    _refBoundingBox1(box).ref,
    _refColor1(color).ref,
  ),
);