ultimatepp/examples/PainterExamples/RadialFocus.cpp
cxl 9ee7e1d00d Improved PainterExamples
git-svn-id: svn://ultimatepp.org/upp/trunk@778 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-01-17 11:58:39 +00:00

12 lines
235 B
C++

#include "Examples.h"
void RadialFocus(Painter& sw)
{
sw.Circle(400.5, 400.5, 200)
.Fill(300, 300, White(), 400.5, 400.5, 200, LtBlue())
;
}
INITBLOCK {
RegisterExample("Radial gradient with focus", RadialFocus);
}