Beispiel #1
0
 private void inverseButton2_Click(object sender, EventArgs e)
 {
     TakeBoxes(_right.Matrix, _rightBoxes);
     _right.Transpose();
     RefreshBoxes(_right.Matrix, _rightBoxes);
     if (_right is TimeDecorator timeDecorator)
     {
         timeLabel.Text = timeDecorator.Time + " ms";
     }
 }
 /// <summary>
 /// Calls Transpose method of MatrixFacade instance.
 /// </summary>
 public virtual void Transpose()
 {
     _facade.Transpose();
 }