rlRotatef method

void rlRotatef(
  1. num angle,
  2. num x,
  3. num y,
  4. num z,
)

Implementation

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