DrawCubeV method

void DrawCubeV(
  1. Vector3D position,
  2. Vector3D size,
  3. ColorD color
)

Implementation

void DrawCubeV(
  Vector3D position,
  Vector3D size,
  ColorD color,
) => run(
  () => 'DrawCubeV($position, $size, $color)',
  () => rl.Core.DrawCubeV(
    rl.Temp.Vector3$.Ref1(position).ref,
    rl.Temp.Vector3$.Ref2(size).ref,
    rl.Temp.Color$.Ref1(color).ref,
  ),
);