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);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|