//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(); }
//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; }
//Ran when the Calculate button is clicked //Begins the calculation proccess public void OnCalculateClicked() { Suvat.OnCalculateClicked(); }