Browse Source

Adding CommonConstants.

af/merge-core
Olivia 9 years ago
parent
commit
65c848af7b
  1. 18
      src/ImageSharp/Common/CommonConstants.cs

18
src/ImageSharp/Common/CommonConstants.cs

@ -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…
Cancel
Save