mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
24 lines
832 B
C#
24 lines
832 B
C#
using AIStudio.Wpf.DiagramDesigner.Geometrys;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public class PathGeneratorResult
|
|
{
|
|
public PathGeneratorResult(string[] paths, double sourceMarkerAngle, PointBase sourceMarkerPosition,
|
|
double targetMarkerAngle, PointBase targetMarkerPosition)
|
|
{
|
|
Paths = paths;
|
|
SourceMarkerAngle = sourceMarkerAngle;
|
|
SourceMarkerPosition = sourceMarkerPosition;
|
|
TargetMarkerAngle = targetMarkerAngle;
|
|
TargetMarkerPosition = targetMarkerPosition;
|
|
}
|
|
|
|
public string[] Paths { get; }
|
|
public double SourceMarkerAngle { get; }
|
|
public PointBase SourceMarkerPosition { get; }
|
|
public double TargetMarkerAngle { get; }
|
|
public PointBase TargetMarkerPosition { get; }
|
|
}
|
|
}
|