ultimatepp/examples/PainterExamples/GradientRepeat.cpp
cxl 845ace0cc0 Painter Examples
git-svn-id: svn://ultimatepp.org/upp/trunk@750 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-01-15 22:25:46 +00:00

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);
}