PlantSchemeWindow: Expand graph

This commit is contained in:
2026-07-12 22:26:08 +02:00
parent a3a0504c11
commit 791ee7b804
12 changed files with 129 additions and 25 deletions
@@ -9,9 +9,15 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
public double CenterY { get; set; }
public string Label { get; } = "";
public ISet<IEdge> Inputs { get; init; }
public ISet<IEdge> Outputs { get; init; }
public PipeJoin(double x, double y) {
CenterX = x;
CenterY = y;
Inputs = new HashSet<IEdge>();
Outputs = new HashSet<IEdge>();
}
public void Draw(Canvas canvas) {
@@ -24,5 +30,9 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
e.SetValue(Canvas.TopProperty, CenterY - 9);
canvas.Children.Add(e);
}
public bool Update(double x, double y) {
return false;
}
}
}