|
|
|
@ -376,6 +376,10 @@ namespace SixLabors.Primitives |
|
|
|
|
|
|
|
/// <inheritdoc/>
|
|
|
|
[MethodImpl(MethodImplOptions.AggressiveInlining)] |
|
|
|
public bool Equals(RectangleF other) => this.X.Equals(other.X) && this.Y.Equals(other.Y) && this.Width.Equals(other.Width) && this.Height.Equals(other.Height); |
|
|
|
public bool Equals(RectangleF other) => |
|
|
|
this.X.Equals(other.X) && |
|
|
|
this.Y.Equals(other.Y) && |
|
|
|
this.Width.Equals(other.Width) && |
|
|
|
this.Height.Equals(other.Height); |
|
|
|
} |
|
|
|
} |