Files
StructureHelper/StructureHelperLogics/NdmCalculations/Analyses/ByForces/LimitCurve/RectSurroundProc.cs
Evgeny Redikultsev 0a6d29bcfc Add series to graph
2023-12-23 22:40:42 +05:00

74 lines
2.5 KiB
C#

using StructureHelperCommon.Infrastructures.Exceptions;
using StructureHelperCommon.Models.Shapes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
{
public class RectSurroundProc : ISurroundProc
{
private List<IPoint2D> surroundList;
public SurroundData SurroundData { get; set; }
public int PointCount { get; set; }
public RectSurroundProc()
{
}
public List<IPoint2D> GetPoints()
{
CheckParameters();
var xRadius = (SurroundData.XMax - SurroundData.XMin) / 2;
var yRadius = (SurroundData.YMax - SurroundData.YMin) / 2;
surroundList = new();
var pointCount = Convert.ToInt32(Math.Ceiling(PointCount / 8d));
double xStep = xRadius / pointCount;
double yStep = yRadius / pointCount;
double x, y;
x = SurroundData.XMax;
for (int i = 0; i < pointCount * 2; i++)
{
y = SurroundData.YMin + yStep * i;
surroundList.Add(new Point2D() { X = x, Y = y });
}
y = SurroundData.YMax;
for (int i = 0; i < pointCount * 2; i++)
{
x = SurroundData.XMax - xStep * i;
surroundList.Add(new Point2D() { X = x, Y = y });
}
x = SurroundData.XMin;
for (int i = 0; i < pointCount * 2; i++)
{
y = SurroundData.YMax - yStep * i;
surroundList.Add(new Point2D() { X = x, Y = y });
}
y = SurroundData.YMin;
for (int i = 0; i < pointCount * 2; i++)
{
x = SurroundData.XMin + xStep * i;
surroundList.Add(new Point2D() { X = x, Y = y });
}
surroundList.Add(surroundList[0].Clone() as IPoint2D);
return surroundList;
}
private void CheckParameters()
{
//if (surroundList is null || surroundList.Count == 0)
//{
// throw new StructureHelperException(ErrorStrings.ParameterIsNull);
//}
if (PointCount < 12)
{
throw new StructureHelperException(ErrorStrings.DataIsInCorrect + $": Point count must be grater than 12, but was {PointCount}");
}
}
}
}