// Copyright (c) Six Labors and contributors. // Licensed under the Apache License, Version 2.0. namespace SixLabors.ImageSharp { /// /// Common constants used throughout the project /// internal static class Constants { /// /// The epsilon value for comparing floating point numbers. /// public static readonly float Epsilon = 0.001F; /// /// The epsilon squared value for comparing floating point numbers. /// public static readonly float EpsilonSquared = Epsilon * Epsilon; } }