public override int GetHashCode() { return(Center.GetHashCode() ^ Extents.GetHashCode() << 2); }
/// <summary>Builds a hashing code for the instance</summary> /// <returns>The instance's hashing code</returns> public override int GetHashCode() { return(Transform.GetHashCode() ^ Center.GetHashCode() ^ Extents.GetHashCode()); }
/// <summary> /// Returns a hash code for this instance. /// </summary> /// <returns>A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.</returns> public override int GetHashCode() { return(Extents.GetHashCode() + Transformation.GetHashCode()); }
public override int GetHashCode() { // ReSharper disable once NonReadonlyMemberInGetHashCode return(Extents.GetHashCode()); }