mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 22:03:07 -06:00
11 lines
254 B
C++
11 lines
254 B
C++
#include "Examples.h"
|
|
|
|
void FillGradientReflect(Painter& sw)
|
|
{
|
|
sw.Rectangle(0, 0, 500, 500)
|
|
.Fill(200, 100, Blue(), 300, 300, LtRed(), GRADIENT_REFLECT);
|
|
}
|
|
|
|
INITBLOCK {
|
|
RegisterExample("Linear gradient - REFLECT", FillGradientReflect);
|
|
}
|