14 lines
165 B
C#
14 lines
165 B
C#
|
|
namespace OpenNest
|
|
{
|
|
public enum RelativePosition
|
|
{
|
|
Intersecting,
|
|
Left,
|
|
Right,
|
|
Top,
|
|
Bottom,
|
|
None
|
|
}
|
|
}
|