Surround Data Control was added
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user