GenMeshPlane method

MeshD GenMeshPlane(
  1. num width,
  2. num length,
  3. num resX,
  4. num resZ,
)

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(),
    ),
  ),
);