Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Geometry/IShape.cs
2023-01-08 09:22:37 +08:00

10 lines
202 B
C#

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