using StructureHelperCommon.Models.Calculators; using StructureHelperCommon.Models.Loggers; using StructureHelperCommon.Models.Shapes; using System; using System.Collections.Generic; 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 { /// /// Logic for build collection of points by surround points /// public interface ILimitCurveLogic : IHasActionByResult { /// /// Returns list of points by source collection /// /// /// List GetPoints(IEnumerable points); ITraceLogger? TraceLogger { get; set; } } }