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