mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-20 08:26:36 +08:00
14 lines
778 B
C#
14 lines
778 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using AIStudio.Wpf.DiagramDesigner.Geometry;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public interface IPathFinder
|
|
{
|
|
List<ConnectorPoint> UpdateConnectionPoints(IDiagramViewModel diagramViewModel, PointBase sourceA, PointBase sourceB, FullyCreatedConnectorInfo sourceConnectorInfo, ConnectorInfoBase sinkConnectorInfo);
|
|
List<PointBase> GetConnectionLine(IDiagramViewModel diagramViewModel, ConnectorInfo source, ConnectorInfo sink, bool showLastLine, bool sourceInnerPoint = false);
|
|
List<PointBase> GetConnectionLine(IDiagramViewModel diagramViewModel, ConnectorInfo source, PointBase sinkPoint, ConnectorOrientation preferredOrientation, bool showLastLine, bool isInnerPoint = false);
|
|
}
|
|
}
|