Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Geometrys/IShape.cs
2023-01-12 23:02:53 +08:00

10 lines
203 B
C#

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