Exemplo n.º 1
0
 /// <summary>
 /// Applies the inverse of this rotation to the given rotation.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public void ApplyInverse(ref OrthoBasis3d other, ref OrthoBasis3d result)
 {
     result.SetXY(
         ApplyInverse(other._x),
         ApplyInverse(other._y)
         );
 }
Exemplo n.º 2
0
 /// <summary>
 /// Applies the inverse of this rotation to the given rotation.
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public void ApplyInverse(ref OrthoBasis3d other)
 {
     other.SetXY(
         ApplyInverse(other._x),
         ApplyInverse(other._y)
         );
 }