ultimatepp/benchmarks/PainterExamples/Shapes.cpp
cxl 419f9e44e3 .benchmarks
git-svn-id: svn://ultimatepp.org/upp/trunk@12484 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2018-11-08 11:58:50 +00:00

10 lines
198 B
C++

#include "Examples.h"
void RoundedRect(Painter& sw)
{
sw.RoundedRectangle(100, 100, 400, 200, 20).Stroke(2, Black());
}
INITBLOCK {
RegisterExample("RoundedRectangle", RoundedRect);
}