Files
OpenNest/OpenNest.Core/Bending/BendDirection.cs
AJ Isaacs c2a470f79c 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>
2026-03-24 20:18:52 -04:00

10 lines
115 B
C#

namespace OpenNest.Bending
{
public enum BendDirection
{
Unknown,
Up,
Down
}
}