Exemplo n.º 1
0
 /// <summary>
 /// This method joins with the form called Select
 /// </summary>
 /// <param name="itemName">Get the item clicked</param>
 /// <param name="handled">Handled the item</param>
 public void Kriging_Click(object sender, EventArgs e)
 {
     Interpolators myForm = new Interpolators((Map)App.Map, false);
     // Select myForm = new Select(App.Map);
     myForm.Show();
 }
Exemplo n.º 2
0
        public double[] OpenInterpolator()
        {
            Interpolators myForm = new Interpolators((Map)App.Map, true);
            if (myForm.ShowDialog() == DialogResult.OK)
                return myForm.GetTheoreticalModelParameters();
            else
                return null;

        }