DrawCubeWires method
Draw cube wires
Implementation
void DrawCubeWires(
Vector3D position,
num width,
num height,
num length,
ColorD color,
) => run(
() => _debugLabels.DrawCubeWires(position, width, height, length, color),
() => _flat.DrawCubeWires(
position,
width.toDouble(),
height.toDouble(),
length.toDouble(),
color,
),
);