Report exceptions during Boolean processing

- Issue MatterHackers/MCCentral#5659
Investigate failure to subtract on Pulse setup machine
This commit is contained in:
jlewin 2019-06-07 13:52:47 -07:00
parent 4981154768
commit 23ec362e99

View file

@ -101,6 +101,11 @@ namespace MatterHackers.MatterControl.PartPreviewWindow.View3D
return new Mesh(vcArray, fcArray);
}
catch (Exception ex)
{
ApplicationController.Instance.LogInfo("Error performing boolean operation: ");
ApplicationController.Instance.LogInfo(ex.Message);
}
finally
{
if (pVc != IntPtr.Zero)