rlRotatef method

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

Implementation

@override
void rlRotatef(
  num angle,
  num x,
  num y,
  num z,
) => run(
  () => RaylibDebugLabels.rlRotatef(angle, x, y, z),
  () => rl.Rlgl.rlRotatef.run4(
    angle.toJS,
    x.toJS,
    y.toJS,
    z.toJS,
  ),
);