From 9f8bcc464db227bfc570c98ea6d23583f38fd4a7 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Sun, 19 Feb 2023 14:41:55 +1000 Subject: [PATCH] Respond to feedback --- src/ImageSharp/Common/Constants.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/ImageSharp/Common/Constants.cs b/src/ImageSharp/Common/Constants.cs index a3cfe3623f..d4640f133f 100644 --- a/src/ImageSharp/Common/Constants.cs +++ b/src/ImageSharp/Common/Constants.cs @@ -1,8 +1,6 @@ // Copyright (c) Six Labors. // Licensed under the Six Labors Split License. -using System.Runtime.Intrinsics; - namespace SixLabors.ImageSharp; /// @@ -15,11 +13,6 @@ internal static class Constants /// public static readonly float Epsilon = 0.001F; - /// - /// The epsilon value for comparing floating point numbers. - /// - public static readonly Vector256 Epsilon256 = Vector256.Create(0.001F); - /// /// The epsilon squared value for comparing floating point numbers. ///