mirror of https://github.com/SixLabors/ImageSharp
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
|||||
|
// <copyright file="CommonConstants.cs" company="James Jackson-South">
|
||||
|
// Copyright (c) James Jackson-South and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
// </copyright>
|
||||
|
|
||||
|
namespace ImageSharp.Common |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Common constants used throughout the project
|
||||
|
/// </summary>
|
||||
|
public static class CommonConstants |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// The epsilon for comparing floating point numbers.
|
||||
|
/// </summary>
|
||||
|
public static readonly float Epsilon = 0.001f; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue