Adding change temp object

issue: MatterHackers/MCCentral#6123
Create a temperature calibration object
This commit is contained in:
LarsBrubaker 2020-11-14 13:35:03 -08:00
parent eb6960b053
commit 975c9294ca
10 changed files with 297 additions and 30 deletions

View file

@ -59,6 +59,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
ScaleMatrixXY = 16,
Shadow = 32,
SnappingIndicators = 64,
ScaleHeight = 128,
Standard2D = MoveInZ | Shadow | SnappingIndicators | RotateZ | ScaleMatrixXY
}
@ -219,6 +220,11 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
Object3DControls.Add(new MoveInZControl(this));
}
if (controls.HasFlag(ControlTypes.ScaleHeight))
{
Object3DControls.Add(new ScaleHeightControl(this));
}
if (controls.HasFlag(ControlTypes.ScaleMatrixXY))
{
Object3DControls.Add(new ScaleCornerControl(this, 0));