|
|
|
@ -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>
|
|
|
|
|