Remove unexpected partial class designations

This commit is contained in:
John Lewin 2018-01-11 01:13:38 -08:00
parent 4ee30102e6
commit 5ff0bed4ae
3 changed files with 204 additions and 211 deletions

View file

@ -36,8 +36,6 @@ using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.VectorMath;
namespace MatterHackers.MatterControl.PartPreviewWindow
{
public partial class SelectedObjectPanel
{
public class AlignControls : FlowLayoutWidget
{
@ -205,4 +203,3 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
}
}
}
}

View file

@ -33,12 +33,9 @@ using MatterHackers.Agg;
using MatterHackers.Agg.UI;
using MatterHackers.DataConverters3D;
using MatterHackers.Localizations;
using MatterHackers.MatterControl.CustomWidgets;
using MatterHackers.MeshVisualizer;
namespace MatterHackers.MatterControl.PartPreviewWindow
{
public partial class SelectedObjectPanel
{
public class MaterialControls : FlowLayoutWidget, IIgnoredPopupChild
{
@ -122,4 +119,3 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
}
}
}
}

View file

@ -40,7 +40,7 @@ using MatterHackers.MatterControl.Library;
namespace MatterHackers.MatterControl.PartPreviewWindow
{
public partial class SelectedObjectPanel : FlowLayoutWidget, IContentStore
public class SelectedObjectPanel : FlowLayoutWidget, IContentStore
{
private IObject3D item = new Object3D();
@ -349,8 +349,6 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
});
}
internal enum AxisAlignment { Min, Center, Max, SourceCoordinateSystem };
public class InMemoryItem : ILibraryContentItem
{
private IObject3D existingItem;
@ -382,4 +380,6 @@ namespace MatterHackers.MatterControl.PartPreviewWindow
}
}
}
public enum AxisAlignment { Min, Center, Max, SourceCoordinateSystem };
}