Exemplo n.º 1
0
 /// <summary>
 /// Is this rotation equivalent to a given one?
 /// Equivalence is defined as rotations around vectors sharing the same axis (including opposite directions)
 /// and an angle with the same modulated equivalence. This in turn means the same spatial orientation after transformation.
 /// See <see cref="AxisAngle.IsEquivalent(AxisAngle)"/>
 /// </summary>
 /// <param name="rv"></param>
 /// <returns></returns>
 public bool IsEquivalent(RotationVector rv)
 {
     return(this.ToAxisAngle().IsEquivalent(rv.ToAxisAngle()));
 }