ultimatepp/examples/PainterExamples/Gradient.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

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