Files
aistudio-wpf-diagram/AIStudio.Wpf.DiagramDesigner/Geometrys/IShape.cs

10 lines
203 B
C#
Raw Normal View History

2023-01-08 09:22:37 +08:00
using System.Collections.Generic;
2023-01-12 23:02:53 +08:00
namespace AIStudio.Wpf.DiagramDesigner.Geometrys
2023-01-08 09:22:37 +08:00
{
public interface IShape
{
IEnumerable<PointBase> GetIntersectionsWithLine(LineBase line);
}
}