48 lines
2.0 KiB
C#
48 lines
2.0 KiB
C#
using StructureHelper.Models.Materials;
|
|
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelperCommon.Services.Forces;
|
|
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Triangulations
|
|
{
|
|
/// <inheritdoc />
|
|
public class RectangleTriangulationLogicOptions : IShapeTriangulationLogicOptions
|
|
{
|
|
/// <inheritdoc />
|
|
public IPoint2D Center { get; set; }
|
|
/// <inheritdoc />
|
|
public double RotationAngle { get; set; } = 0d;
|
|
/// <inheritdoc />
|
|
public IRectangleShape Rectangle { get; }
|
|
|
|
/// <inheritdoc />
|
|
public StrainTuple Prestrain { get; set; }
|
|
public ITriangulationOptions TriangulationOptions { get; set; }
|
|
public IHeadMaterial HeadMaterial { get; set; }
|
|
|
|
public IDivisionSize DivisionSize { get; } = new DivisionSize(Guid.Empty);
|
|
|
|
public RectangleTriangulationLogicOptions(IPoint2D center, IRectangleShape rectangle, double ndmMaxSize, int ndmMinDivision)
|
|
{
|
|
Center = center;
|
|
Rectangle = rectangle;
|
|
DivisionSize.NdmMaxSize = ndmMaxSize;
|
|
DivisionSize.NdmMinDivision = ndmMinDivision;
|
|
Prestrain = new StrainTuple();
|
|
}
|
|
|
|
public RectangleTriangulationLogicOptions(IRectangleNdmPrimitive primitive)
|
|
{
|
|
Center = new Point2D() {X = primitive.Center.X, Y = primitive.Center.Y };
|
|
RotationAngle = primitive.RotationAngle;
|
|
Rectangle = primitive;
|
|
DivisionSize.NdmMaxSize = primitive.DivisionSize.NdmMaxSize;
|
|
DivisionSize.NdmMinDivision = primitive.DivisionSize.NdmMinDivision;
|
|
HeadMaterial = primitive.NdmElement.HeadMaterial;
|
|
Prestrain = ForceTupleService.SumTuples(primitive.NdmElement.UsersPrestrain, primitive.NdmElement.AutoPrestrain) as StrainTuple;
|
|
}
|
|
}
|
|
}
|