95 lines
3.4 KiB
C#
95 lines
3.4 KiB
C#
using LoaderCalculator.Data.Ndms;
|
|
using StructureHelperCommon.Infrastructures.Exceptions;
|
|
using StructureHelperCommon.Infrastructures.Interfaces;
|
|
using StructureHelperCommon.Models.Shapes;
|
|
using StructureHelperLogics.Models.CrossSections;
|
|
using StructureHelperLogics.NdmCalculations.Triangulations;
|
|
|
|
namespace StructureHelperLogics.NdmCalculations.Primitives
|
|
{
|
|
public class ShapeNdmPrimitive : IShapeNdmPrimitive
|
|
{
|
|
private IShape shape;
|
|
private IUpdateStrategy<IShapeNdmPrimitive> updateStrategy;
|
|
|
|
public Guid Id { get; }
|
|
public string? Name { get; set; } = string.Empty;
|
|
public IPoint2D Center { get; set; } = new Point2D();
|
|
public IShape Shape => shape;
|
|
public INdmElement NdmElement { get; set; } = new NdmElement(Guid.NewGuid());
|
|
public ICrossSection? CrossSection { get; set; }
|
|
public IVisualProperty VisualProperty { get; set; } = new VisualProperty { Opacity = 0.8d };
|
|
public double RotationAngle { get; set; }
|
|
public IDivisionSize DivisionSize { get; set; } = new DivisionSize(Guid.NewGuid());
|
|
public ShapeNdmPrimitive(Guid id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public object Clone()
|
|
{
|
|
var primitive = new ShapeNdmPrimitive(Guid.NewGuid());
|
|
LinePolygonShape polygon = new(Guid.NewGuid());
|
|
primitive.SetShape(polygon);
|
|
updateStrategy ??= new ShapeNdmPrimitiveUpdateStrategy();
|
|
updateStrategy.Update(primitive, this);
|
|
return primitive;
|
|
}
|
|
|
|
public IEnumerable<INdm> GetNdms(ITriangulationOptions triangulationOptions)
|
|
{
|
|
var triangulationLogicOption = new LinePolygonTriangulationLogicOption(this, triangulationOptions);
|
|
var logic = new LinePolygonTriangulationLogic(triangulationLogicOption);
|
|
return logic.GetNdmCollection();
|
|
}
|
|
|
|
public List<INamedAreaPoint> GetValuePoints()
|
|
{
|
|
var points = new List<INamedAreaPoint>();
|
|
INamedAreaPoint newPoint;
|
|
newPoint = new NamedAreaPoint
|
|
{
|
|
Name = "Center",
|
|
Point = Center.Clone() as Point2D,
|
|
Area = 0d
|
|
};
|
|
points.Add(newPoint);
|
|
if (shape is ILinePolygonShape polygon)
|
|
{
|
|
int i = 0;
|
|
foreach (var item in polygon.Vertices)
|
|
{
|
|
newPoint = new NamedAreaPoint
|
|
{
|
|
Name = $"Vertex {i}",
|
|
Point = item.Point.Clone() as IPoint2D,
|
|
Area = 0d
|
|
};
|
|
points.Add(newPoint);
|
|
i++;
|
|
}
|
|
}
|
|
return points;
|
|
}
|
|
|
|
public bool IsPointInside(IPoint2D point)
|
|
{
|
|
if (shape is ILinePolygonShape polygon)
|
|
{
|
|
var newShape = PolygonGeometryUtils.GetTransfromedPolygon(polygon, Center.X, Center.Y);
|
|
var calculator = new PolygonCalculator();
|
|
return calculator.ContainsPoint(newShape, point);
|
|
}
|
|
else
|
|
{
|
|
throw new StructureHelperException(ErrorStrings.ObjectTypeIsUnknownObj(shape));
|
|
}
|
|
}
|
|
|
|
public void SetShape(IShape shape)
|
|
{
|
|
this.shape = shape;
|
|
}
|
|
}
|
|
}
|