mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 02:05:43 +00:00
Move MathUtility to Math namespace (#7)
This commit is contained in:
parent
ba7c88ccff
commit
47bd3e1274
@ -1,4 +1,6 @@
|
||||
namespace X10D;
|
||||
using X10D.Math;
|
||||
|
||||
namespace X10D;
|
||||
|
||||
/// <summary>
|
||||
/// Extension methods for <see cref="double" />.
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System.Diagnostics.Contracts;
|
||||
using System.Net;
|
||||
using System.Runtime.CompilerServices;
|
||||
using X10D.Math;
|
||||
|
||||
namespace X10D;
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System.Diagnostics.Contracts;
|
||||
using System.Net;
|
||||
using System.Runtime.CompilerServices;
|
||||
using X10D.Math;
|
||||
|
||||
namespace X10D;
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
using System.Diagnostics.Contracts;
|
||||
using System.Net;
|
||||
using System.Runtime.CompilerServices;
|
||||
using X10D.Math;
|
||||
|
||||
namespace X10D;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace X10D;
|
||||
namespace X10D.Math;
|
||||
|
||||
/// <summary>
|
||||
/// Provides static helpers methods for mathematical functions not found in the .NET <see cref="System.Math" /> class.
|
@ -1,4 +1,6 @@
|
||||
namespace X10D;
|
||||
using X10D.Math;
|
||||
|
||||
namespace X10D;
|
||||
|
||||
/// <summary>
|
||||
/// Extension methods for <see cref="float" />.
|
||||
|
Loading…
Reference in New Issue
Block a user