Adding change temp object
issue: MatterHackers/MCCentral#6123 Create a temperature calibration object
This commit is contained in:
parent
eb6960b053
commit
975c9294ca
10 changed files with 297 additions and 30 deletions
|
|
@ -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));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue