ultimatepp/benchmarks/PainterBenchmark/TextRotated.cpp
cxl c4d0d63aab .benchmarks
git-svn-id: svn://ultimatepp.org/upp/trunk@14485 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-05-20 14:39:17 +00:00

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));
}