mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
7 lines
192 B
C++
7 lines
192 B
C++
#include "LionBenchmark.h"
|
|
|
|
void TextRotated(Painter& sw)
|
|
{
|
|
for(int angle = 0; angle < 360; angle += 30)
|
|
sw.DrawText(250, 250, angle * 10, "x Text with angle " + AsString(angle));
|
|
}
|