Add curvature calculator

This commit is contained in:
Evgeny Redikultsev
2025-11-22 21:17:39 +05:00
parent 215f631bb0
commit 7ab4909c67
42 changed files with 705 additions and 108 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperCommon.Infrastructures.Exceptions
{
public class StructureHelperNullReferenceException : StructureHelperException
{
public StructureHelperNullReferenceException(string errorString) : base(errorString)
{
}
public StructureHelperNullReferenceException(Exception ex) : base(ex)
{
}
}
}