using OpenNest.Geometry; using System.Collections.Generic; namespace OpenNest.Engine.BestFit { public interface IDistanceComputer { double[] ComputeDistances( List stationaryLines, List movingTemplateLines, SlideOffset[] offsets); } }