Fixed error in SmallestXCoordinate method

This commit is contained in:
AJ
2019-11-21 13:52:46 -05:00
parent 502a216de9
commit 9ce2a4c57a

View File

@@ -92,7 +92,6 @@ namespace ExportDXF
public static Bend SmallestXCoordinate(IList<Bend> bends)
{
return bends.Min(b => b.X);
double dist = double.MaxValue;
int index = -1;