git-svn-id: svn://ultimatepp.org/upp/trunk@12228 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2018-09-01 13:12:46 +00:00
parent bfe9f102a9
commit 0d08a4ac53

View file

@ -50,6 +50,9 @@ void MyApp::Paint(Draw& w)
Point tr[] = { Point(50, 5), Point(80, 50), Point(20, 50) };
w.DrawPolygon(tr, 3, Green());
w.DrawPolyline(tr, 3, 2, Magenta());
w.DrawEllipse(5, 70, 70, 40, Green(), 2, Magenta());
w.DrawEllipse(5, 150, 70, 40, Green());
}
GUI_APP_MAIN