示例#1
0
 /// <summary>
 /// Determines whether the specified <see cref="SharpDX.CompositeTransform"/> is equal to this instance.
 /// </summary>
 /// <param name="other">The <see cref="SharpDX.CompositeTransform"/> to compare with this instance.</param>
 /// <returns>
 /// <c>true</c> if the specified <see cref="SharpDX.CompositeTransform"/> is equal to this instance; otherwise, <c>false</c>.
 /// </returns>
 public bool Equals(ref CompositeTransform other)
 {
     return(Scale.Equals(ref other.Scale) && Rotation.Equals(ref other.Rotation) && Translation.Equals(ref other.Translation));
 }