DrawBoundingBox method

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

Implementation

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