Commented unnecessary "using" statement

Clean-up
This commit is contained in:
Rich 2010-03-25 19:35:01 +00:00
parent fbc56399f1
commit 076fcfae10
2 changed files with 2 additions and 7 deletions

View File

@ -1257,7 +1257,7 @@ namespace XYPlots
DebugOutput("DrawArc3"); VG_Arc.iColor = 3;
VG_Arc.iColor = 4;
DrawArc(r1, t1, t1 + theta1, cp1, x, y, pg, vgOutput);
Console.WriteLine("'DrawArc3','{0}',{1},{2}", Key, r1, theta1);
//Console.WriteLine("'DrawArc3','{0}',{1},{2}", Key, r1, theta1);
DebugShowLocation("DrawArc3");
}
MoveAbsolute(x, y);
@ -1393,11 +1393,6 @@ namespace XYPlots
DrawRelative(x, y, pg, vgOutput);
}
}
private void MoveForArc(point pnt)
{
Position[X] += pnt.xyValue[X];
Position[Y] -= pnt.xyValue[Y];
}
private void DrawArc(double radius, double Sangle, double Eangle, point cp, int x, int y, VG.Page pg, IVGOutput vgOutput)
{
DebugOutput("r={0} sAngle={1} eAngle={2} cp={3},{4} x={5} y={6}", radius, Sangle, Eangle, cp.xyValue[0], cp.xyValue[1], x, y);

View File

@ -10,7 +10,7 @@ using System.Windows.Forms;
using System.Diagnostics;
using System.IO;
using VG;
using XYPlots;
//using XYPlots;
namespace XYPlots
{