GenMeshPlane method
Implementation
MeshD GenMeshPlane(
num width,
num length,
num resX,
num resZ,
) => run(
() => 'GenMeshPlane($width, $length, $resX, $resZ)',
() => _refCaptureMesh(
'GenMeshPlane_${width.toDouble()}_${length.toDouble()}',
rl.Core.GenMeshPlane(
width.toDouble(),
length.toDouble(),
resX.toInt(),
resZ.toInt(),
),
),
);