DrawCube method
Implementation
void DrawCube(
Vector3D position,
num width,
num height,
num length,
ColorD color,
) => run(
() => 'DrawCube($position, $width, $height, $length, $color)',
() => rl.Core.DrawCube(
_refVector31(position).ref,
width.toDouble(),
height.toDouble(),
length.toDouble(),
_refColor1(color).ref,
),
);