PlantSchemeWindow: Expand graph
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user