From 9ce2a4c57a6b312a7e99336a2757b9af0ac5728b Mon Sep 17 00:00:00 2001 From: AJ Date: Thu, 21 Nov 2019 13:52:46 -0500 Subject: [PATCH] Fixed error in SmallestXCoordinate method --- ExportDXF/ViewHelper.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/ExportDXF/ViewHelper.cs b/ExportDXF/ViewHelper.cs index 9e43f5c..4096e8a 100644 --- a/ExportDXF/ViewHelper.cs +++ b/ExportDXF/ViewHelper.cs @@ -92,7 +92,6 @@ namespace ExportDXF public static Bend SmallestXCoordinate(IList bends) { - return bends.Min(b => b.X); double dist = double.MaxValue; int index = -1;