mattercontrol/MatterControlLib/DesignTools/Operations/PinchObject3D.cs

123 lines
4 KiB
C#
Raw Normal View History

2018-04-01 16:06:31 -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.
*/
using MatterHackers.Agg.UI;
using MatterHackers.DataConverters3D;
using MatterHackers.Localizations;
2018-04-01 16:06:31 -07:00
using MatterHackers.MatterControl.PartPreviewWindow.View3D;
using MatterHackers.VectorMath;
2019-01-11 16:49:34 -08:00
using System;
using System.ComponentModel;
using System.Threading;
2018-04-01 16:06:31 -07:00
namespace MatterHackers.MatterControl.DesignTools
{
2018-06-20 08:09:35 -07:00
public class PinchObject3D : MeshWrapperObject3D
2018-04-01 16:06:31 -07:00
{
public PinchObject3D()
{
Name = "Pinch".Localize();
}
2018-04-01 16:06:31 -07:00
[DisplayName("Back Ratio")]
public double PinchRatio { get; set; } = .5;
2018-04-01 16:06:31 -07:00
public override void OnInvalidate(InvalidateArgs invalidateType)
2018-04-01 16:06:31 -07:00
{
if ((invalidateType.InvalidateType == InvalidateType.Content
|| invalidateType.InvalidateType == InvalidateType.Matrix
|| invalidateType.InvalidateType == InvalidateType.Mesh)
&& invalidateType.Source != this
&& !RebuildLocked)
{
Rebuild(null);
}
else if (invalidateType.InvalidateType == InvalidateType.Properties
&& invalidateType.Source == this)
{
Rebuild(null);
}
else
{
base.OnInvalidate(invalidateType);
}
2018-04-01 16:06:31 -07:00
}
private void Rebuild(UndoBuffer undoBuffer)
2018-04-01 16:06:31 -07:00
{
this.DebugDepth("Rebuild");
2018-06-20 08:09:35 -07:00
using (RebuildLock())
{
ResetMeshWrapperMeshes(Object3DPropertyFlags.All, CancellationToken.None);
2018-06-20 08:09:35 -07:00
// remember the current matrix then clear it so the parts will rotate at the original wrapped position
var currentMatrix = Matrix;
Matrix = Matrix4X4.Identity;
2018-06-20 08:09:35 -07:00
var aabb = this.GetAxisAlignedBoundingBox();
2018-06-20 08:09:35 -07:00
foreach (var items in this.WrappedObjects())
2018-04-01 20:09:15 -07:00
{
2018-06-20 08:09:35 -07:00
var transformedMesh = items.meshCopy.Mesh;
var originalMesh = items.original.Mesh;
var itemMatrix = items.original.WorldMatrix(this);
var invItemMatrix = itemMatrix.Inverted;
2018-04-01 16:06:31 -07:00
2018-06-20 08:09:35 -07:00
for (int i = 0; i < originalMesh.Vertices.Count; i++)
{
var pos = originalMesh.Vertices[i];
pos = pos.Transform(itemMatrix);
2018-04-01 16:06:31 -07:00
var ratioToApply = PinchRatio;
2018-04-01 16:06:31 -07:00
var distFromCenter = pos.X - aabb.Center.X;
var distanceToPinch = distFromCenter * (1 - PinchRatio);
var delta = (aabb.Center.X + distFromCenter * ratioToApply) - pos.X;
2018-04-02 14:15:27 -07:00
// find out how much to pinch based on y position
var amountOfRatio = (pos.Y - aabb.MinXYZ.Y) / aabb.YSize;
2018-04-01 20:09:15 -07:00
var newPos = new Vector3Float(pos.X + delta * amountOfRatio, pos.Y, pos.Z);
2018-04-01 16:06:31 -07:00
transformedMesh.Vertices[i] = newPos.Transform(invItemMatrix);
2018-06-20 08:09:35 -07:00
}
2018-06-20 08:09:35 -07:00
transformedMesh.MarkAsChanged();
transformedMesh.CalculateNormals();
}
2018-06-20 08:09:35 -07:00
// set the matrix back
Matrix = currentMatrix;
}
base.Invalidate(new InvalidateArgs(this, InvalidateType.Content));
2018-04-01 16:06:31 -07:00
}
}
}