67 lines
2.3 KiB
C#
67 lines
2.3 KiB
C#
using StructureHelperLogics.Models.Materials;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelper.Models.Materials;
|
|
using System.Collections.Generic;
|
|
using LoaderCalculator.Data.Ndms;
|
|
using LoaderCalculator.Data.Materials;
|
|
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using System;
|
|
using StructureHelperLogics.NdmCalculations.Primitives;
|
|
using StructureHelperLogics.NdmCalculations.Triangulations;
|
|
using StructureHelperLogics.Services.NdmPrimitives;
|
|
using StructureHelperCommon.Models.Forces;
|
|
using StructureHelperLogics.Models.CrossSections;
|
|
|
|
namespace StructureHelperLogics.Models.Primitives
|
|
{
|
|
public class PointPrimitive : IPointPrimitive
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public double CenterX { get; set; }
|
|
public double CenterY { get; set; }
|
|
public IHeadMaterial HeadMaterial { get; set; }
|
|
public double NdmMaxSize { get; set; }
|
|
public int NdmMinDivision { get; set; }
|
|
public IStrainTuple UsersPrestrain { get; private set; }
|
|
public IStrainTuple AutoPrestrain { get; private set; }
|
|
public double Area { get; set; }
|
|
|
|
public IVisualProperty VisualProperty { get; }
|
|
public bool Triangulate { get; set; }
|
|
public ICrossSection? CrossSection { get; set; }
|
|
|
|
public PointPrimitive()
|
|
{
|
|
Name = "New Point";
|
|
Area = 0.0005d;
|
|
VisualProperty = new VisualProperty();
|
|
UsersPrestrain = new StrainTuple();
|
|
AutoPrestrain = new StrainTuple();
|
|
Triangulate = true;
|
|
}
|
|
|
|
public PointPrimitive(IHeadMaterial material) : this() { HeadMaterial = material; }
|
|
|
|
public IEnumerable<INdm> GetNdms(IMaterial material)
|
|
{
|
|
var options = new PointTriangulationLogicOptions(this);
|
|
IPointTriangulationLogic logic = new PointTriangulationLogic(options);
|
|
return logic.GetNdmCollection(material);
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public object Clone()
|
|
{
|
|
var primitive = new PointPrimitive();
|
|
NdmPrimitivesService.CopyNdmProperties(this, primitive);
|
|
primitive.Area = Area;
|
|
return primitive;
|
|
}
|
|
}
|
|
}
|