Exemple #1
0
        private void btnIntegral_Click(object sender, EventArgs e)
        {
            CDeflection pDeflection   = new CDeflection(_DataRecords);
            double      dblDeflection = pDeflection.CalDeflection();

            this.txtEvaluation.Text = dblDeflection.ToString();
        }
Exemple #2
0
        private void btnTranslation_Click(object sender, EventArgs e)
        {
            //CTranslation pTranslation = new CTranslation(_DataRecords);
            //double dblTranslation = pTranslation.CalTranslation();
            //this.txtEvaluation.Text = dblTranslation.ToString();


            CDeflection pDeflection   = new CDeflection(_DataRecords);
            double      dblDeflection = pDeflection.CalDeflection();

            this.txtEvaluation.Text = dblDeflection.ToString();
        }