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