コード例 #1
0
 /// <summary>
 /// Sets a given matrix to the actively selected matrix in the <see cref="InputsViewModel"/>
 /// </summary>
 /// <param name="mat"></param>
 public void SetMatrixFromSelected(Matrix4ViewModel mat)
 {
     if (Inputs.IsMatrixSelected)
     {
         mat.Set(Inputs.SelectedMatrix.GetMatrix());
     }
 }