DrawCubeV method

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

Implementation

@override
void DrawCubeV(
  Vector3D position,
  Vector3D size,
  ColorD color,
) => run(
  () => RaylibDebugLabels.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,
  ),
);