From b4d91a2f7bdeadaac0961a5d7b7a57768d40c557 Mon Sep 17 00:00:00 2001 From: Lars Brubaker Date: Tue, 16 Aug 2022 17:17:04 -0700 Subject: [PATCH] Butter names --- .../DesignTools/Primitives/DualContouringObject3D.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MatterControlLib/DesignTools/Primitives/DualContouringObject3D.cs b/MatterControlLib/DesignTools/Primitives/DualContouringObject3D.cs index dd2af3f53..f3714bf48 100644 --- a/MatterControlLib/DesignTools/Primitives/DualContouringObject3D.cs +++ b/MatterControlLib/DesignTools/Primitives/DualContouringObject3D.cs @@ -44,9 +44,9 @@ namespace MatterHackers.MatterControl.DesignTools { Box, [EnumName("2 Boxes")] - Boxes2, + Box_And_Sphere, [EnumName("3 Boxes")] - Boxes3, + Boxes_3, Sphere, Cylinder, } @@ -116,7 +116,7 @@ namespace MatterHackers.MatterControl.DesignTools }; break; - case Shapes.Boxes3: + case Shapes.Boxes_3: shape = new Union() { Items = new ISdf[] @@ -137,7 +137,7 @@ namespace MatterHackers.MatterControl.DesignTools }; break; - case Shapes.Boxes2: + case Shapes.Box_And_Sphere: shape = new Union() { Items = new ISdf[] @@ -145,7 +145,7 @@ namespace MatterHackers.MatterControl.DesignTools new Transform(new Sphere() { Radius = Size / 2 - }, Matrix4X4.CreateTranslation(4, 0, 0)), + }, Matrix4X4.CreateTranslation(-3, -2, 0)), new Transform(new Box() { Size = new Vector3(Size, Size, Size)