Projektdateien hinzufügen.
This commit is contained in:
23
VideoBrowser/Common/Epsilon.cs
Normal file
23
VideoBrowser/Common/Epsilon.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace VideoBrowser.Common
|
||||
{
|
||||
/// <summary>
|
||||
/// Defines the <see cref="Epsilon" />
|
||||
/// </summary>
|
||||
public static class Epsilon
|
||||
{
|
||||
/// <summary>
|
||||
/// The epsilon for angle.
|
||||
/// </summary>
|
||||
public const double Angle = 0.01;
|
||||
|
||||
/// <summary>
|
||||
/// The epsilon for default.
|
||||
/// </summary>
|
||||
public const double Default = 0.00000000001;
|
||||
|
||||
/// <summary>
|
||||
/// The epsilon for meter.
|
||||
/// </summary>
|
||||
public const double Meter = 0.00001;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user