mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
12 lines
223 B
C++
12 lines
223 B
C++
#include "Examples.h"
|
|
|
|
void Radial(Painter& sw)
|
|
{
|
|
sw.Circle(400.5, 400.5, 200)
|
|
.Fill(400.5, 400.5, Blue(), 200, LtRed())
|
|
.Stroke(1, Black());
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Radial gradient", Radial);
|
|
}
|