mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
12 lines
235 B
C++
12 lines
235 B
C++
#include "Examples.h"
|
|
|
|
void RadialFocus(Painter& sw)
|
|
{
|
|
sw.Circle(400.5, 400.5, 200)
|
|
.Fill(300, 300, White(), 400.5, 400.5, 200, LtBlue())
|
|
;
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Radial gradient with focus", RadialFocus);
|
|
}
|