DrawCubeV method

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

Draw cube (Vector version)

Implementation

void DrawCubeV(
  Vector3D position,
  Vector3D size,
  ColorD color,
) => run(
  () => _debugLabels.DrawCubeV(position, size, color),
  () => _flat.DrawCubeV(
    position,
    size,
    color,
  ),
);