mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-04 16:16:34 +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);
|
|
}
|
|
}
|