1
0
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:
Oliver Booth 2022-04-21 19:18:36 +01:00
parent ba7c88ccff
commit 47bd3e1274
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634
6 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,6 @@
namespace X10D;
using X10D.Math;
namespace X10D;
/// <summary>
/// Extension methods for <see cref="double" />.

View File

@ -1,6 +1,7 @@
using System.Diagnostics.Contracts;
using System.Net;
using System.Runtime.CompilerServices;
using X10D.Math;
namespace X10D;

View File

@ -1,6 +1,7 @@
using System.Diagnostics.Contracts;
using System.Net;
using System.Runtime.CompilerServices;
using X10D.Math;
namespace X10D;

View File

@ -1,6 +1,7 @@
using System.Diagnostics.Contracts;
using System.Net;
using System.Runtime.CompilerServices;
using X10D.Math;
namespace X10D;

View File

@ -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.

View File

@ -1,4 +1,6 @@
namespace X10D;
using X10D.Math;
namespace X10D;
/// <summary>
/// Extension methods for <see cref="float" />.