This commit is contained in:
h z
2024-06-21 21:48:07 +08:00
commit 42ba33d229
129 changed files with 10711 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace Skeleton.Algebra.FixableObjects;
internal static class PostConstructionFixExtension
{
internal static void PostConstructionFix<TFixable>(this TFixable obj)
where TFixable : FixableTensor
{
if (obj.GetType() == typeof(TFixable) && obj.NeedFix)
obj.Fix();
}
}