mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
10 lines
198 B
C++
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);
|
|
}
|