feat: add Bend domain model and BendDirection enum to OpenNest.Core

Introduces OpenNest.Core/Bending/ with Bend and BendDirection types as
the foundation for bend line detection. Includes 6 passing unit tests.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 20:18:52 -04:00
parent 39f8a79cfd
commit c2a470f79c
3 changed files with 136 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace OpenNest.Bending
{
public enum BendDirection
{
Unknown,
Up,
Down
}
}