DrawCubeWires method
Implementation
void DrawCubeWires(
Vector3D position,
num width,
num height,
num length,
ColorD color,
) => run(
() => 'DrawCubeWires($position, $width, $height, $length, $color)',
() => rl.Core.DrawCubeWires(
rl.Temp.Vector3$.Ref1(position).ref,
width.toDouble(),
height.toDouble(),
length.toDouble(),
rl.Temp.Color$.Ref1(color).ref,
),
);