Beispiel #1
0
        public override bool Equals(object obj)
        {
            if (null == obj)
            {
                return(false);
            }
            Kinematics other = (Kinematics)obj;

            return(deltaT == other.deltaT &&
                   deltaV == other.deltaV &&
                   deltaP == other.deltaP &&
                   tInitial == other.tInitial &&
                   tFinal == other.tFinal &&
                   vInitial == other.vInitial &&
                   vFinal == other.vFinal &&
                   pInitial == other.pInitial &&
                   pFinal == other.pFinal &&
                   acceleration == other.acceleration);
        }
Beispiel #2
0
 public MainWindow()
 {
     kinematics = new Kinematics();
     InitializeComponent();
 }