Пример #1
0
 private void buttonAlong_Click(object sender, EventArgs e)
 {
     try
     {
         double[] p = coordinates;
         double   a = Double.Parse(textBoxRot.Text);
         double[,] m = ReferenceFrame.CalucateViewMatrix(p, a);
         fill(m);
     }
     catch (Exception ex)
     {
         ex.ShowError(10);
     }
 }