GenMeshCube method
Implementation
MeshD GenMeshCube(
num width,
num height,
num length,
) => run(
() => 'GenMeshCube($width, $height, $length)',
() => rl.Temp.Mesh$.RefCapture(
'GenMeshCube_${width.toDouble()}_${height.toDouble()}_${length.toDouble()}',
rl.Core.GenMeshCube(
width.toDouble(),
height.toDouble(),
length.toDouble(),
),
),
);