Fixing compiler error

This commit is contained in:
Lars Brubaker 2018-03-12 09:28:50 -07:00
parent 836f640f97
commit c1dad26a75
2 changed files with 2 additions and 3 deletions

View file

@ -33,7 +33,6 @@ using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using MatterHackers.Agg;
using MatterHackers.VectorMath;
@ -44,7 +43,7 @@ namespace MatterControl.Printing
private double amountOfAccumulatedEWhileParsing = 0;
private List<int> indexOfChangeInZ = new List<int>();
private MatterHackers.VectorMath.Vector2 center = MatterHackers.VectorMath.Vector2.Zero;
private MatterHackers.VectorMath.Vector2 center = Vector2.Zero;
private double parsingLastZ;
private bool gcodeHasExplicitLayerChangeInfo = false;
private double firstLayerThickness;