Turning off unfinished features for release
This commit is contained in:
parent
2139410faa
commit
d8b81066f7
6 changed files with 40 additions and 0 deletions
|
|
@ -49,6 +49,7 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
|
|||
Name = "Combine";
|
||||
}
|
||||
|
||||
#if DEBUG
|
||||
[EnumDisplay(Mode = EnumDisplayAttribute.PresentationMode.Buttons)]
|
||||
public BooleanProcessing.ProcessingModes Processing { get; set; } = BooleanProcessing.ProcessingModes.Polygons;
|
||||
|
||||
|
|
@ -60,6 +61,12 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
|
|||
|
||||
[EnumDisplay(Mode = EnumDisplayAttribute.PresentationMode.Buttons)]
|
||||
public BooleanProcessing.ProcessingResolution InputResolution { get; set; } = BooleanProcessing.ProcessingResolution._64;
|
||||
#else
|
||||
private BooleanProcessing.ProcessingModes Processing { get; set; } = BooleanProcessing.ProcessingModes.Polygons;
|
||||
private BooleanProcessing.ProcessingResolution OutputResolution { get; set; } = BooleanProcessing.ProcessingResolution._64;
|
||||
private BooleanProcessing.IplicitSurfaceMethod MeshAnalysis { get; set; }
|
||||
private BooleanProcessing.ProcessingResolution InputResolution { get; set; } = BooleanProcessing.ProcessingResolution._64;
|
||||
#endif
|
||||
|
||||
public override Task Rebuild()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue