ultimatepp/examples/PainterExamples/Arc.cpp
cxl b556ccca12 New painter examples
git-svn-id: svn://ultimatepp.org/upp/trunk@869 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-02-15 22:34:47 +00:00

11 lines
279 B
C++

#include "Examples.h"
void Arc(Painter& sw)
{
sw.Move(400, 200).Arc(400, 200, 200, 100, 0.0, M_PI).Stroke(4, Blue());
sw.Move(400, 400).Arc(400, 400, 100, 100, 0.0, M_PI / 3).Fill(LtCyan()).Stroke(2, Black());
}
INITBLOCK {
RegisterExample("Arc example", Arc);
}