From 8bbcb767703c29679478adc283449933edb63b36 Mon Sep 17 00:00:00 2001 From: Markus Quaritsch <markus.quaritsch@tugraz.at> Date: Mon, 5 Oct 2015 10:42:13 +0200 Subject: [PATCH] add simple tool to plot comparison graphs vecto 2 and vecto3 --- GraphDrawer/GraphDrawer.csproj | 3 +++ GraphDrawer/Program.cs | 9 +++------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/GraphDrawer/GraphDrawer.csproj b/GraphDrawer/GraphDrawer.csproj index 4871cbada1..00d0753aaa 100644 --- a/GraphDrawer/GraphDrawer.csproj +++ b/GraphDrawer/GraphDrawer.csproj @@ -34,6 +34,9 @@ <ItemGroup> <Reference Include="System" /> <Reference Include="System.Core" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Windows.Forms.DataVisualization" /> <Reference Include="System.Xml.Linq" /> <Reference Include="System.Data.DataSetExtensions" /> <Reference Include="Microsoft.CSharp" /> diff --git a/GraphDrawer/Program.cs b/GraphDrawer/Program.cs index 093c4b78c0..31d4120c3d 100644 --- a/GraphDrawer/Program.cs +++ b/GraphDrawer/Program.cs @@ -4,6 +4,8 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using TUGraz.VectoCore.Tests.Utils; +using System.Drawing; +using System.Windows.Forms.DataVisualization.Charting; namespace GraphDrawer { @@ -11,12 +13,7 @@ namespace GraphDrawer { private static void Main(string[] args) { - var imgV3 = @"..\..\..\VectoCoreTest\bin\Debug\Coach_DriverStrategy_Drive_50_slope_dec-inc.vmod"; - var imgv22 = - @"..\..\..\VectoCoreTest\TestData\Integration\DriverStrategy\Vecto2.2\Coach\24t Coach_Cycle_Drive_30_Dec_Increasing_Slope.vmod"; - - GraphWriter.Write(imgV3, imgv22); - //GraphWriter.Write(args[0], args[1]); + GraphWriter.Write(args[0], args[1]); } } } \ No newline at end of file -- GitLab