mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 00:16:36 +08:00
10 lines
203 B
C#
10 lines
203 B
C#
using System.Collections.Generic;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner.Geometrys
|
|
{
|
|
public interface IShape
|
|
{
|
|
IEnumerable<PointBase> GetIntersectionsWithLine(LineBase line);
|
|
}
|
|
}
|