Esempio n. 1
0
        private void ButtonEditApplyHeightMap_Click(object sender, RoutedEventArgs e)
        {
            if (machine.Mode == Machine.OperatingMode.SendFile)
            {
                return;
            }

            if (Map == null || Map.NotProbed.Count > 0)
            {
                MessageBox.Show("HeightMap is not ready");
                return;
            }

            try
            {
                machine.SetFile(ToolPath.ApplyHeightMap(Map).GetGCode());
                Machine_OperatingMode_Changed();
            }
            catch (IndexOutOfRangeException)
            {
                MessageBox.Show("The Toolpath is not contained in the HeightMap");
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }