Add EllipsePrimitive to DTO Converter
This commit is contained in:
@@ -9,11 +9,22 @@ namespace StructureHelperLogics.NdmCalculations.Primitives
|
||||
/// <inheritdoc/>
|
||||
public class DivisionSize : IDivisionSize
|
||||
{
|
||||
public Guid Id { get; }
|
||||
/// <inheritdoc/>
|
||||
public double NdmMaxSize { get; set; } = 0.01d;
|
||||
/// <inheritdoc/>
|
||||
public int NdmMinDivision { get; set; } = 10;
|
||||
/// <inheritdoc/>
|
||||
public bool ClearUnderlying { get; set; } = false;
|
||||
|
||||
public DivisionSize(Guid id)
|
||||
{
|
||||
Id = id;
|
||||
}
|
||||
|
||||
public DivisionSize() : this (Guid.NewGuid())
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user