drawBoundingBox function

void drawBoundingBox(
  1. BoundingBox box,
  2. Color color
)

Draw bounding box (wires).

Implementation

void drawBoundingBox(BoundingBox box, Color color) {
  return library.DrawBoundingBox(box.ref, color.ref);
}