Ejemplo n.º 1
0
 //Ran when the Calculate button is clicked
 //Begins the calculation proccess
 public void OnCalculateClicked()
 {
     //Calculates the Suvat based quantities
     Suvat.OnCalculateClicked();
     //Calculates the additional quantities added to the combined module
     MiscInfomation();
 }
Ejemplo n.º 2
0
    //Ran when the Simulation button is clicked
    public void OnSimulateClicked()
    {
        //Calculates values required for simulation
        Suvat.OnCalculateClicked();

        //Begins the simulation process in the SimulateController class
        newSimulateController.isSimulating = true;
    }
Ejemplo n.º 3
0
 //Ran when the Calculate button is clicked
 //Begins the calculation proccess
 public void OnCalculateClicked()
 {
     Suvat.OnCalculateClicked();
 }