rlTranslatef method

void rlTranslatef(
  1. num x,
  2. num y,
  3. num z
)

Implementation

void rlTranslatef(
  num x,
  num y,
  num z,
) => run(
  () => 'rlTranslatef($x, $y, $z)',
  () => rl.Rlgl.rlTranslatef(
    x.toDouble(),
    y.toDouble(),
    z.toDouble(),
  ),
);