DrawCube method

void DrawCube(
  1. Vector3C position,
  2. double width,
  3. double height,
  4. double length,
  5. ColorC color,
)

Implementation

void DrawCube(
  Vector3C position,
  double width,
  double height,
  double length,
  ColorC color,
) {
  return _DrawCube(position, width, height, length, color);
}