Fix spelling

This commit is contained in:
jlewin 2019-04-24 15:53:34 -07:00
parent 7f7e10bad8
commit ada5e28140
7 changed files with 23 additions and 23 deletions

View file

@ -3195,7 +3195,7 @@ Support and tutorials:
var view3D = systemWindow.Descendants<View3DWidget>().Where((v) => v.ActuallyVisibleOnScreen()).FirstOrDefault();
var printerTabPage = systemWindow.Descendants<PrinterTabPage>().Where((v) => v.ActuallyVisibleOnScreen()).FirstOrDefault();
var offsetDist = 50;
var arrowKeyOpperation = keyEvent.Shift ? TrackBallTransformType.Translation : TrackBallTransformType.Rotation;
var arrowKeyOperation = keyEvent.Shift ? TrackBallTransformType.Translation : TrackBallTransformType.Rotation;
var gcode2D = systemWindow.Descendants<GCode2DWidget>().Where((v) => v.ActuallyVisibleOnScreen()).FirstOrDefault();
@ -3364,7 +3364,7 @@ Support and tutorials:
}
foreach (var interactionVolume in view3D.InteractionLayer.InteractionVolumes)
{
interactionVolume.CancelOpperation();
interactionVolume.CancelOperation();
}
break;
@ -3378,7 +3378,7 @@ Support and tutorials:
else
{
// move or rotate view left
Offset3DView(view3D, new Vector2(-offsetDist, 0), arrowKeyOpperation);
Offset3DView(view3D, new Vector2(-offsetDist, 0), arrowKeyOperation);
}
keyEvent.Handled = true;
@ -3395,7 +3395,7 @@ Support and tutorials:
else
{
// move or rotate view right
Offset3DView(view3D, new Vector2(offsetDist, 0), arrowKeyOpperation);
Offset3DView(view3D, new Vector2(offsetDist, 0), arrowKeyOperation);
}
keyEvent.Handled = true;
@ -3411,7 +3411,7 @@ Support and tutorials:
}
else
{
Offset3DView(view3D, new Vector2(0, offsetDist), arrowKeyOpperation);
Offset3DView(view3D, new Vector2(0, offsetDist), arrowKeyOperation);
}
keyEvent.Handled = true;
@ -3427,7 +3427,7 @@ Support and tutorials:
}
else
{
Offset3DView(view3D, new Vector2(0, -offsetDist), arrowKeyOpperation);
Offset3DView(view3D, new Vector2(0, -offsetDist), arrowKeyOperation);
}
keyEvent.Handled = true;
@ -3532,11 +3532,11 @@ Support and tutorials:
return systemWindow;
}
private static void Offset3DView(View3DWidget view3D, Vector2 offset, TrackBallTransformType opperation)
private static void Offset3DView(View3DWidget view3D, Vector2 offset, TrackBallTransformType operation)
{
var center = view3D.TrackballTumbleWidget.LocalBounds.Center;
view3D.TrackballTumbleWidget.TrackBallController.OnMouseDown(center, Matrix4X4.Identity, opperation);
view3D.TrackballTumbleWidget.TrackBallController.OnMouseDown(center, Matrix4X4.Identity, operation);
view3D.TrackballTumbleWidget.TrackBallController.OnMouseMove(center + offset);
view3D.TrackballTumbleWidget.TrackBallController.OnMouseUp();
view3D.TrackballTumbleWidget.Invalidate();

View file

@ -433,7 +433,7 @@ namespace MatterHackers.Plugins.EditorTools
base.OnMouseUp(mouseEvent3D);
}
public override void CancelOpperation()
public override void CancelOperation()
{
IObject3D selectedItem = RootSelection;
if (selectedItem != null
@ -450,7 +450,7 @@ namespace MatterHackers.Plugins.EditorTools
InteractionContext.Scene.ShowSelectionShadow = true;
}
base.CancelOpperation();
base.CancelOperation();
}
public override void SetPosition(IObject3D selectedItem)

View file

@ -345,7 +345,7 @@ namespace MatterHackers.Plugins.EditorTools
base.OnMouseUp(mouseEvent3D);
}
public override void CancelOpperation()
public override void CancelOperation()
{
IObject3D selectedItem = RootSelection;
if (selectedItem != null
@ -359,7 +359,7 @@ namespace MatterHackers.Plugins.EditorTools
InteractionContext.Scene.ShowSelectionShadow = true;
}
base.CancelOpperation();
base.CancelOperation();
}
public override void SetPosition(IObject3D selectedItem)

View file

@ -298,7 +298,7 @@ namespace MatterHackers.Plugins.EditorTools
base.OnMouseUp(mouseEvent3D);
}
public override void CancelOpperation()
public override void CancelOperation()
{
IObject3D selectedItem = RootSelection;
if (selectedItem != null
@ -312,7 +312,7 @@ namespace MatterHackers.Plugins.EditorTools
InteractionContext.Scene.ShowSelectionShadow = true;
}
base.CancelOpperation();
base.CancelOperation();
}
public override void SetPosition(IObject3D selectedItem)

View file

@ -27,13 +27,13 @@ of the authors and should not be interpreted as representing official policies,
either expressed or implied, of the FreeBSD Project.
*/
using MatterHackers.Agg;
using MatterHackers.PolygonMesh;
using MatterHackers.VectorMath;
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Threading;
using MatterHackers.Agg;
using MatterHackers.PolygonMesh;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
{
@ -47,7 +47,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
public static Mesh Do(Mesh inMeshA, Matrix4X4 matrixA,
Mesh inMeshB, Matrix4X4 matrixB,
int opperation,
int operation,
IProgress<ProgressStatus> reporter, double amountPerOperation, double percentCompleted, ProgressStatus progressStatus, CancellationToken cancellationToken)
{
var libiglExe = "libigl_boolean.exe";
@ -71,7 +71,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
int fcCount;
DoBooleanOpperation(va, va.Length, fa, fa.Length,
vb, vb.Length, fb, fb.Length,
opperation,
operation,
out pVc, out vcCount, out pFc, out fcCount);
var vcArray = new double[vcCount];
@ -104,7 +104,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
var meshB = inMeshB.Copy(CancellationToken.None);
meshB.Transform(matrixB);
switch (opperation)
switch (operation)
{
case 0:
return PolygonMesh.Csg.CsgOperations.Union(meshA, meshB, (status, progress0To1) =>

View file

@ -261,7 +261,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
base.OnMouseUp(mouseEvent3D);
}
public override void CancelOpperation()
public override void CancelOperation()
{
IObject3D selectedItem = RootSelection;
if (selectedItem != null
@ -275,7 +275,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
InteractionContext.Scene.ShowSelectionShadow = true;
}
base.CancelOpperation();
base.CancelOperation();
}
public override void SetPosition(IObject3D selectedItem)

View file

@ -148,7 +148,7 @@ namespace MatterHackers.MeshVisualizer
InteractionContext.GuiSurface.Invalidate();
}
public virtual void CancelOpperation()
public virtual void CancelOperation()
{
}