diff --git a/src/ImageSharp/Numerics/RectangleF.cs b/src/ImageSharp/Numerics/RectangleF.cs index 28d887c5d..7611c9602 100644 --- a/src/ImageSharp/Numerics/RectangleF.cs +++ b/src/ImageSharp/Numerics/RectangleF.cs @@ -164,20 +164,6 @@ namespace ImageSharp } } - /// - /// Creates a with the coordinates of the specified . - /// - /// The rectangle - [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static implicit operator RectangleF(Vector4 vector) => new RectangleF(vector.X, vector.Y, vector.Z, vector.W); - - /// - /// Creates a with the coordinates of the specified . - /// - /// The rectangle - [MethodImpl(MethodImplOptions.AggressiveInlining)] - public static implicit operator Vector4(RectangleF rectangle) => new Vector4(rectangle.X, rectangle.Y, rectangle.Width, rectangle.Height); - /// /// Creates a with the coordinates of the specified by truncating each coordinate. ///