2018-07-06 17:11:33 -07:00
|
|
|
|
/*
|
|
|
|
|
|
Copyright (c) 2018, Lars Brubaker, John Lewin
|
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
|
|
|
|
|
|
|
1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
|
|
list of conditions and the following disclaimer.
|
|
|
|
|
|
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
|
|
this list of conditions and the following disclaimer in the documentation
|
|
|
|
|
|
and/or other materials provided with the distribution.
|
|
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
|
|
|
|
|
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
|
|
|
|
The views and conclusions contained in the software and documentation are those
|
|
|
|
|
|
of the authors and should not be interpreted as representing official policies,
|
|
|
|
|
|
either expressed or implied, of the FreeBSD Project.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
2019-01-28 10:53:09 -08:00
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
/**************************** OBSOLETE! ******************************/
|
|
|
|
|
|
/************************ USE NEWER VERSION **************************/
|
|
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
|
2018-07-06 17:11:33 -07:00
|
|
|
|
using System.Threading;
|
2019-01-27 11:31:37 -08:00
|
|
|
|
using System.Threading.Tasks;
|
2018-07-06 17:11:33 -07:00
|
|
|
|
using MatterHackers.DataConverters3D;
|
|
|
|
|
|
using MatterHackers.Localizations;
|
|
|
|
|
|
using MatterHackers.MatterControl.DesignTools.Operations;
|
|
|
|
|
|
using MatterHackers.MatterControl.PartPreviewWindow.View3D;
|
|
|
|
|
|
using MatterHackers.VectorMath;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MatterHackers.MatterControl.DesignTools
|
|
|
|
|
|
{
|
|
|
|
|
|
public class MirrorObject3D : MeshWrapperObject3D
|
|
|
|
|
|
{
|
|
|
|
|
|
public enum MirrorAxis { X_Axis, Y_Axis, Z_Axis };
|
|
|
|
|
|
|
|
|
|
|
|
public MirrorAxis MirrorOn { get; set; } = MirrorAxis.X_Axis;
|
|
|
|
|
|
|
|
|
|
|
|
public MirrorObject3D()
|
|
|
|
|
|
{
|
|
|
|
|
|
Name = "Mirror".Localize();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-27 11:31:37 -08:00
|
|
|
|
public override Task Rebuild()
|
2018-07-06 17:11:33 -07:00
|
|
|
|
{
|
|
|
|
|
|
this.DebugDepth("Rebuild");
|
|
|
|
|
|
|
|
|
|
|
|
using (RebuildLock())
|
|
|
|
|
|
{
|
|
|
|
|
|
ResetMeshWrapperMeshes(Object3DPropertyFlags.All, CancellationToken.None);
|
|
|
|
|
|
|
|
|
|
|
|
var oldMatrix = this.Matrix;
|
|
|
|
|
|
this.Matrix = Matrix4X4.Identity;
|
|
|
|
|
|
|
|
|
|
|
|
var mirrorMatrix = Matrix4X4.Identity;
|
|
|
|
|
|
switch (MirrorOn)
|
|
|
|
|
|
{
|
|
|
|
|
|
case MirrorAxis.X_Axis:
|
|
|
|
|
|
mirrorMatrix = this.ApplyAtBoundsCenter(Matrix4X4.CreateScale(-1, 1, 1));
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case MirrorAxis.Y_Axis:
|
|
|
|
|
|
mirrorMatrix = this.ApplyAtBoundsCenter(Matrix4X4.CreateScale(1, -1, 1));
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case MirrorAxis.Z_Axis:
|
|
|
|
|
|
mirrorMatrix = this.ApplyAtBoundsCenter(Matrix4X4.CreateScale(1, 1, -1));
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
foreach (var item in this.WrappedObjects())
|
|
|
|
|
|
{
|
|
|
|
|
|
var meshCopyToThis = item.meshCopy.WorldMatrix(this);
|
|
|
|
|
|
|
|
|
|
|
|
// move it to us then mirror then move it back
|
|
|
|
|
|
item.meshCopy.Mesh.Transform(meshCopyToThis * mirrorMatrix * meshCopyToThis.Inverted);
|
|
|
|
|
|
|
2019-01-12 12:38:02 -08:00
|
|
|
|
item.meshCopy.Mesh.ReverseFaces();
|
2018-07-06 17:11:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
this.Matrix = oldMatrix;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-05 22:01:50 -08:00
|
|
|
|
this.CancelAllParentBuilding();
|
2019-02-13 15:45:33 -08:00
|
|
|
|
Parent?.Invalidate(new InvalidateArgs(this, InvalidateType.Children));
|
2019-01-27 11:31:37 -08:00
|
|
|
|
|
|
|
|
|
|
return Task.CompletedTask;
|
2018-07-06 17:11:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-02-13 15:45:33 -08:00
|
|
|
|
public override async void OnInvalidate(InvalidateArgs invalidateType)
|
2018-07-06 17:11:33 -07:00
|
|
|
|
{
|
2019-01-28 14:19:40 -08:00
|
|
|
|
if ((invalidateType.InvalidateType.HasFlag(InvalidateType.Children)
|
|
|
|
|
|
|| invalidateType.InvalidateType.HasFlag(InvalidateType.Matrix)
|
|
|
|
|
|
|| invalidateType.InvalidateType.HasFlag(InvalidateType.Mesh))
|
2018-07-06 17:11:33 -07:00
|
|
|
|
&& invalidateType.Source != this
|
|
|
|
|
|
&& !RebuildLocked)
|
|
|
|
|
|
{
|
2019-02-13 15:45:33 -08:00
|
|
|
|
await Rebuild();
|
2018-07-06 17:11:33 -07:00
|
|
|
|
}
|
2019-01-28 14:19:40 -08:00
|
|
|
|
else if (invalidateType.InvalidateType.HasFlag(InvalidateType.Properties)
|
2018-07-06 17:11:33 -07:00
|
|
|
|
&& invalidateType.Source == this)
|
|
|
|
|
|
{
|
2019-02-13 15:45:33 -08:00
|
|
|
|
await Rebuild();
|
2018-07-06 17:11:33 -07:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
base.OnInvalidate(invalidateType);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|