rlTranslatef method

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

Implementation

@override
void rlTranslatef(
  num x,
  num y,
  num z,
) => run(
  () => RaylibDebugLabels.rlTranslatef(x, y, z),
  () => rl.Rlgl.rlTranslatef(
    x.toDouble(),
    y.toDouble(),
    z.toDouble(),
  ),
);