mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-18 06:06:01 -06:00
11 lines
218 B
C++
11 lines
218 B
C++
#include "Examples.h"
|
|
|
|
void FillGradient(Painter& sw)
|
|
{
|
|
sw.Rectangle(0, 0, 500, 500)
|
|
.Fill(200, 100, Blue(), 300, 300, LtRed());
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Linear gradient - PAD", FillGradient);
|
|
}
|