Removed debug from ArcDraw to draw segments in different colors

This commit is contained in:
Rich 2009-12-18 18:30:52 +00:00
parent b65a6abf87
commit a8405cdabc

View File

@ -343,8 +343,9 @@ public class VG_Arc : VG
{
// Pen pn = new Pen(Brushes.Black,ToPoints(lnwid));
#if DEBUG
Pen pn = new Pen(myColors[iColor],ToPoints(lnwid));
iColor=(iColor+1)%myColors.Length;
//Pen pn = new Pen(myColors[iColor],ToPoints(lnwid));
//iColor=(iColor+1)%myColors.Length;
Pen pn = new Pen(Color.Black, ToPoints(lnwid));
#else
Pen pn = new Pen(Color.Black,ToPoints(lnwid));
#endif