using StructureHelperCommon.Infrastructures.Interfaces;
using StructureHelperCommon.Models;
using StructureHelperCommon.Models.Calculators;
using StructureHelperCommon.Models.Shapes;
//Copyright (c) 2023 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperLogics.NdmCalculations.Analyses.ByForces
{
///
/// Logic for build collection of points by surround points
///
public interface ILimitCurveLogic : ILogic, IHasActionByResult
{
///
/// Returns list of points by source collection
///
///
///
List GetPoints(IEnumerable points);
IShiftTraceLogger? TraceLogger { get; set; }
}
}