16 lines
375 B
C#
16 lines
375 B
C#
|
namespace DeepNestLib
|
|||
|
{
|
|||
|
public class RectangleSheet : Sheet
|
|||
|
{
|
|||
|
public void Rebuild()
|
|||
|
{
|
|||
|
Points = new SvgPoint[] { };
|
|||
|
AddPoint(new SvgPoint(x, y));
|
|||
|
AddPoint(new SvgPoint(x + Width, y));
|
|||
|
AddPoint(new SvgPoint(x + Width, y + Height));
|
|||
|
AddPoint(new SvgPoint(x, y + Height));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|