Browse Source

Respond to feedback

pull/2359/head
James Jackson-South 3 years ago
parent
commit
9f8bcc464d
  1. 7
      src/ImageSharp/Common/Constants.cs

7
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;
/// <summary>
@ -15,11 +13,6 @@ internal static class Constants
/// </summary>
public static readonly float Epsilon = 0.001F;
/// <summary>
/// The epsilon value for comparing floating point numbers.
/// </summary>
public static readonly Vector256<float> Epsilon256 = Vector256.Create(0.001F);
/// <summary>
/// The epsilon squared value for comparing floating point numbers.
/// </summary>

Loading…
Cancel
Save