DrawBoundingBox method

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

Implementation

void DrawBoundingBox(
  BoundingBoxD box,
  ColorD color,
) => run(
  () => 'DrawBoundingBox($box, $color)',
  () => rl.Core.DrawBoundingBox(
    rl.Temp.BoundingBox$.Ref1(box).ref,
    rl.Temp.Color$.Ref1(color).ref,
  ),
);