PlantSchemeWindow: Expand graph
This commit is contained in:
@@ -7,6 +7,8 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
|
||||
public double CenterY { get; set; }
|
||||
public string Label { get; set; }
|
||||
public bool IsFilled => CallbackIsFilled();
|
||||
public ISet<IEdge> Inputs { get; init; }
|
||||
public ISet<IEdge> Outputs { get; init; }
|
||||
|
||||
protected Func<bool> CallbackIsFilled;
|
||||
|
||||
@@ -15,10 +17,16 @@ namespace PamhagenSysCtrl.Helpers.Pipeline {
|
||||
CenterY = y;
|
||||
Label = label;
|
||||
CallbackIsFilled = cbFilled;
|
||||
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