Clean up whitespace

This commit is contained in:
John Lewin 2018-10-05 09:04:07 -07:00
parent 1f5cceaee4
commit d8a5100639
5 changed files with 5 additions and 23 deletions

View file

@ -4,7 +4,6 @@ namespace MatterHackers.MatterControl.Plugins.X3GDriver
{
public class X3GPrinterDetails
{
public Vector3 stepsPerMm;//Make a M command to receive steps and save into these static values (will be sent after successful connect)
public long extruderStepsPerMm;
@ -27,6 +26,7 @@ namespace MatterHackers.MatterControl.Plugins.X3GDriver
public int requiredTemperatureResponseCount;//The number of responses from the printer that corresponds to one M105 (adjusts to extruders & bed heating as required)
public int teperatureResponseCount;//number of responses for temperature currently received from the printer. resets after hitting target count
public long dwellTime; //this is set during a dwell command and is reset to zero after the dwell has completed
public X3GPrinterDetails()
{
currentPosition = new Vector3(/*285,150,0*/);//defaults to "far corner" (where the machine thinks it is at 0,0) inverted positional offset
@ -44,6 +44,5 @@ namespace MatterHackers.MatterControl.Plugins.X3GDriver
extruderOffset = new Vector2();
extruderRelativePos = false;
}
}
}