From 34fd2f1fedd4fc4c90b84cdc708f2ff0b885ccb9 Mon Sep 17 00:00:00 2001 From: cxl Date: Sat, 1 Sep 2018 12:35:13 +0000 Subject: [PATCH] .upptst git-svn-id: svn://ultimatepp.org/upp/trunk@12226 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- upptst/DrawPolyPolygon/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upptst/DrawPolyPolygon/main.cpp b/upptst/DrawPolyPolygon/main.cpp index 06809ff60..5f65c3a61 100644 --- a/upptst/DrawPolyPolygon/main.cpp +++ b/upptst/DrawPolyPolygon/main.cpp @@ -47,9 +47,9 @@ void MyApp::Paint(Draw& w) lcounts[0], sizeof(lcounts) / sizeof(int), 4, Color(0, 192, 0)); - Point tr[] = { Point(50, 5), Point(80, 50), Point(0, 50) }; + Point tr[] = { Point(50, 5), Point(80, 50), Point(20, 50) }; w.DrawPolygon(tr, 3, Green()); - w.DrawPolyline(tr, 3, Magenta()); + w.DrawPolyline(tr, 3, 2, Magenta()); } GUI_APP_MAIN