using System.Collections.Generic; namespace AIStudio.Wpf.DiagramDesigner.Geometry { public interface IShape { IEnumerable GetIntersectionsWithLine(LineBase line); } }