fixing modify opperations on selection groups

issue: MatterHackers/MCCentral#4005
Scale duplicates objects
This commit is contained in:
LarsBrubaker 2018-09-22 18:59:42 -07:00
parent 30cef6ef5a
commit 76345be576
3 changed files with 37 additions and 16 deletions

View file

@ -49,7 +49,7 @@ namespace MatterHackers.MatterControl.DesignTools.Operations
Name = "Scale".Localize();
}
public ScaleObject3D(IObject3D item, double x = 0, double y = 0, double z = 0)
public ScaleObject3D(IObject3D item, double x = 1, double y = 1, double z = 1)
: this(item, new Vector3(x, y, z))
{
}