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