using OpenNest.Geometry; using System.Collections.Generic; namespace OpenNest.Engine { /// /// Determines whether a candidate fill result is better than the current best. /// Implementations must be stateless and thread-safe. /// public interface IFillComparer { bool IsBetter(List candidate, List current, Box workArea); } }