First commit.

This commit is contained in:
aj
2016-05-16 22:09:19 -04:00
commit f2595d7cba
189 changed files with 26944 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
namespace OpenNest
{
public struct Spacing
{
public Spacing(double topBottom, double leftRight)
{
Top = Bottom = topBottom;
Left = Right = leftRight;
}
public Spacing(double left, double bottom, double right, double top)
{
Left = left;
Bottom = bottom;
Right = right;
Top = top;
}
public double Left;
public double Bottom;
public double Right;
public double Top;
}
}