From 076fcfae10c17547419090f47bca8f84b4f21c00 Mon Sep 17 00:00:00 2001 From: Rich Date: Thu, 25 Mar 2010 19:35:01 +0000 Subject: [PATCH] Commented unnecessary "using" statement Clean-up --- PROMS/XYPlots/XYPlots.cs | 7 +------ PROMS/XYPlots/frmXYPlot.cs | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/PROMS/XYPlots/XYPlots.cs b/PROMS/XYPlots/XYPlots.cs index 5700a00d..ce3a1920 100644 --- a/PROMS/XYPlots/XYPlots.cs +++ b/PROMS/XYPlots/XYPlots.cs @@ -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); diff --git a/PROMS/XYPlots/frmXYPlot.cs b/PROMS/XYPlots/frmXYPlot.cs index 4ec77b7e..76b5463b 100644 --- a/PROMS/XYPlots/frmXYPlot.cs +++ b/PROMS/XYPlots/frmXYPlot.cs @@ -10,7 +10,7 @@ using System.Windows.Forms; using System.Diagnostics; using System.IO; using VG; -using XYPlots; +//using XYPlots; namespace XYPlots {