feat: add PlateOption and PlateOptimizerResult data classes
This commit is contained in:
11
OpenNest.Core/PlateOption.cs
Normal file
11
OpenNest.Core/PlateOption.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace OpenNest
|
||||
{
|
||||
public class PlateOption
|
||||
{
|
||||
public double Width { get; set; }
|
||||
public double Length { get; set; }
|
||||
public double Cost { get; set; }
|
||||
|
||||
public double Area => Width * Length;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user