Files
OpenNest/OpenNest.Core/Math/Generic.cs
2026-03-06 12:51:16 -05:00

13 lines
207 B
C#

namespace OpenNest.Math
{
public static class Generic
{
public static void Swap<T>(ref T a, ref T b)
{
T c = a;
a = b;
b = c;
}
}
}