This commit is contained in:
John Lewin 2018-07-12 22:49:39 -07:00
parent a466f8f708
commit 685541523b
46 changed files with 84 additions and 88 deletions

View file

@ -70,7 +70,7 @@ namespace MatterControl.Tests.MatterControl
AssertMeshLevelPoint(new Vector3(10, 10, 0), new Vector3(10, 10, 10), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(0, 10, 0), new Vector3(0, 10, 0), levelingFunctionsMesh2x2);
// check raised on ponits
// check raised on points
AssertMeshLevelPoint(new Vector3(0, 0, 5), new Vector3(0, 0, 5), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(10, 0, 5), new Vector3(10, 0, 15), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(10, 10, 5), new Vector3(10, 10, 15), levelingFunctionsMesh2x2);
@ -111,7 +111,7 @@ namespace MatterControl.Tests.MatterControl
AssertMeshLevelPoint(new Vector3(10, 10, 0), new Vector3(10, 10, 10), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(0, 10, 0), new Vector3(0, 10, 0), levelingFunctionsMesh2x2);
// check raised on ponits
// check raised on points
AssertMeshLevelPoint(new Vector3(0, 0, 5), new Vector3(0, 0, 5), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(10, 0, 5), new Vector3(10, 0, 15), levelingFunctionsMesh2x2);
AssertMeshLevelPoint(new Vector3(10, 10, 5), new Vector3(10, 10, 15), levelingFunctionsMesh2x2);

View file

@ -229,7 +229,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
// Override the heat up time
Emulator.DefaultHeatUpTime = config.HeatupTime;
// Override the temp stablization time
// Override the temp stabilization time
WaitForTempStream.WaitAfterReachTempTime = config.TempStabilizationTime;
// Create the printer
@ -959,7 +959,7 @@ namespace MatterHackers.MatterControl.Tests.Automation
public double TimeToMoveMouse { get; set; } = .5;
/// <summary>
/// Determins if we use actual sytem file dialogs or simulated file dialogs.
/// Determines if we use actual system file dialogs or simulated file dialogs.
/// </summary>
public bool UseAutomationDialogs { get; set; } = true;

View file

@ -60,7 +60,7 @@ namespace MatterHackers.PolygonMesh.UnitTests
AggContext.StaticData = new FileSystemStaticData(TestContext.CurrentContext.ResolveProjectPath(5, "MatterControl", "StaticData"));
MatterControlUtilities.OverrideAppDataLocation(TestContext.CurrentContext.ResolveProjectPath(5));
// check that we subtarct two 3 sideh cylinders
// check that we subtract two 3 sided cylinders
{
double topHeight = 10;
int sides = 3;
@ -87,7 +87,7 @@ namespace MatterHackers.PolygonMesh.UnitTests
var resultMesh = keepMesh.Subtract(subtractMesh, null, CancellationToken.None);
// this is for debuging the opperation
// this is for debugging the operation
//split1.FinishOutput();
//resultMesh.Save("c:/temp/mesh1.stl", CancellationToken.None);
@ -106,7 +106,7 @@ namespace MatterHackers.PolygonMesh.UnitTests
}
}
// check that we subtarct two 3 sideh cylinders
// check that we subtract two 3 side cylinders
{
int sides = 3;
IObject3D keep = CylinderObject3D.Create(20, 20, sides);
@ -129,7 +129,7 @@ namespace MatterHackers.PolygonMesh.UnitTests
var resultMesh = keepMesh.Subtract(subtractMesh, null, CancellationToken.None);
// this is for debuging the opperation
// this is for debugging the operation
//split1.FinishOutput();
//resultMesh.Save("c:/temp/mesh2.stl", CancellationToken.None);