Surround Data Control was added

This commit is contained in:
Evgeny Redikultsev
2023-12-10 21:39:12 +05:00
parent e6a9322a36
commit a19333f7df
19 changed files with 639 additions and 286 deletions

View File

@@ -6,10 +6,21 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
{
/// <summary>
/// Logic for build collection of points by surround points
/// </summary>
public interface ILimitCurveLogic : IHasActionByResult
{
List<IPoint2D> GetPoints(List<IPoint2D> points);
/// <summary>
/// Returns list of points by source collection
/// </summary>
/// <param name="points"></param>
/// <returns></returns>
List<IPoint2D> GetPoints(IEnumerable<IPoint2D> points);
}
}