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
View File
@@ -9,6 +9,9 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
public bool IsFull => CallbackIsFull();
public bool IsFilled => CallbackIsFilled();
public ISet<IEdge> Inputs { get; init; }
public ISet<IEdge> Outputs { get; init; }
protected Func<bool> CallbackIsFilled;
protected Func<bool> CallbackIsFull;
@@ -18,10 +21,16 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
Label = label;
CallbackIsFilled = cbFilled;
CallbackIsFull = cbFull;
Inputs = new HashSet<IEdge>();
Outputs = new HashSet<IEdge>();
}
public void Draw(Canvas canvas) {
}
public bool Update(double x, double y) {
return false;
}
}
}