[WIP] Scaling
Test / Run tests (push) Successful in 34s

This commit is contained in:
2026-08-13 17:29:27 +02:00
parent 2dee3a9ae9
commit 37654b419a
24 changed files with 645 additions and 533 deletions
@@ -33,14 +33,6 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
canvas.Children.Add(_layer);
}
public static FlowArrows Create(Canvas canvas, Line first, Line second) {
return new FlowArrows(canvas, [
new Point(first.X1, first.Y1),
new Point(first.X2, first.Y2),
new Point(second.X2, second.Y2),
]);
}
public static FlowArrows Create(Canvas canvas, Polyline path) {
return new FlowArrows(canvas, [.. path.Points]);
}