First commit.
This commit is contained in:
18
Source/OpenNest.Core/IBoundable.cs
Normal file
18
Source/OpenNest.Core/IBoundable.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
|
||||
namespace OpenNest
|
||||
{
|
||||
public interface IBoundable
|
||||
{
|
||||
Box BoundingBox { get; }
|
||||
|
||||
double Left { get; }
|
||||
|
||||
double Right { get; }
|
||||
|
||||
double Top { get; }
|
||||
|
||||
double Bottom { get; }
|
||||
|
||||
void UpdateBounds();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user