Made more stream base classes to help with tracking position

Made a proxy class.
Made all position tracking streams keep track of the authoritative printer
This commit is contained in:
Lars Brubaker 2015-12-03 13:54:18 -08:00
parent 0dc24d357a
commit 82126ec7e5
13 changed files with 193 additions and 188 deletions

View file

@ -28,6 +28,7 @@ either expressed or implied, of the FreeBSD Project.
*/
using MatterHackers.MatterControl.PrinterCommunication.Io;
using MatterHackers.VectorMath;
using NUnit.Framework;
namespace MatterControl.Tests.MatterControl
@ -98,5 +99,10 @@ namespace MatterControl.Tests.MatterControl
{
return lines[index++];
}
public override Vector3 SetPrinterPosition(Vector3 position)
{
return position;
}
}
}